mirror of https://github.com/kcal-app/kcal.git
17 lines
344 B
PHP
17 lines
344 B
PHP
<?php
|
|
|
|
namespace App\Models\Traits;
|
|
|
|
use App\Models\JournalEntry;
|
|
use Illuminate\Database\Eloquent\Relations\MorphToMany;
|
|
|
|
trait Journalable
|
|
{
|
|
/**
|
|
* Get all of the journal entries for the recipe.
|
|
*/
|
|
public function journalEntries(): MorphToMany {
|
|
return $this->morphToMany(JournalEntry::class, 'journalable');
|
|
}
|
|
}
|