mirror of https://github.com/kcal-app/kcal.git
33 lines
654 B
PHP
33 lines
654 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Eloquent\Relations\HasMany;
|
|
use Illuminate\Database\Eloquent\Relations\HasManyThrough;
|
|
|
|
class Recipe extends Model
|
|
{
|
|
use HasFactory;
|
|
|
|
/**
|
|
* @inheritdoc
|
|
*/
|
|
protected array $fillable = [
|
|
'name',
|
|
];
|
|
|
|
/**
|
|
* @inheritdoc
|
|
*/
|
|
protected array $with = ['ingredientAmounts'];
|
|
|
|
/**
|
|
* Get the Ingredient Amounts used for this Recipe.
|
|
*/
|
|
public function ingredientAmounts(): HasMany {
|
|
return $this->hasMany(IngredientAmount::class);
|
|
}
|
|
}
|