24 lines
562 B
PHP
24 lines
562 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use App\Traits\UuidPrimaryKey;
|
|
use App\Exceptions\ModelNotFoundException;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class Receta extends Model {
|
|
use UuidPrimaryKey;
|
|
|
|
protected $table = 'recetas';
|
|
protected $hidden = ['created_at', 'updated_at', 'deleted_at'];
|
|
protected $fillable = ['unidades', 'producto_id', 'ingrediente_id'];
|
|
|
|
public function ingrediente() {
|
|
return $this->belongsTo(Ingrediente::class);
|
|
}
|
|
|
|
public function producto() {
|
|
return $this->belongsTo(Producto::class);
|
|
}
|
|
}
|