fix on shelve with available offers

This commit is contained in:
Ludovic CANDELLIER
2022-04-25 21:59:53 +02:00
parent 328d791b87
commit c9bf18d87d
4 changed files with 68 additions and 2 deletions

View File

@@ -12,6 +12,6 @@ class Basket extends Model
public function Offer()
{
return $this->belongsTo('App\Models\Shop\Offer');
return $this->belongsTo(Offer::class);
}
}