phpvms/app/Models/Traits/ExpensableTrait.php
2018-08-26 16:40:04 +00:00

28 lines
449 B
PHP

<?php
namespace App\Models\Traits;
use App\Models\Expense;
trait ExpensableTrait
{
public static function bootExpensableTrait()
{
}
/**
* Morph to Expenses.
*
* @return mixed
*/
public function expenses()
{
return $this->morphMany(
Expense::class,
'expenses', // overridden by the next two anyway
'ref_model',
'ref_model_id'
);
}
}