PATH:
home
/
lab2454c
/
costbloc.com
/
Modules
/
Refund
/
Entities
<?php /** * @package RefundReason model * @author TechVillage <support@techvill.org> * @contributor Al Mamun <[almamun.techvill@gmail.com]> * @created 24-02-2022 */ namespace Modules\Refund\Entities; use App\Models\Model; class RefundReason extends Model { /** * timestamps * * @var boolean */ public $timestamps = false; /** * Relation with Refund model * * @return \Illuminate\Database\Eloquent\Relations\HasMany */ public function refunds() { return $this->hasMany(Refund::class); } }
[+]
..
[-] Refund.php
[edit]
[-] RefundReason.php
[edit]
[-] RefundProcess.php
[edit]