*/ use HasFactory, Notifiable; /** * The attributes that are mass assignable. * * @var list */ protected $fillable = [ 'name', 'description', 'price', ]; public function application(): HasOne { return $ths->hasOne(Application::class); } public function getFormatPrice(): string { return number_format($this->price, 0, ",", " ") . " Руб"; } }