mirror of https://github.com/kcal-app/kcal.git
24 lines
369 B
PHP
24 lines
369 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class Ingredient extends Model
|
|
{
|
|
use HasFactory;
|
|
|
|
/**
|
|
* @inheritdoc
|
|
*/
|
|
protected array $fillable = [
|
|
'name',
|
|
'unit',
|
|
'calories',
|
|
'protein',
|
|
'fat',
|
|
'carbohydrates',
|
|
];
|
|
}
|