Refactoring, change menu, add many features

This commit is contained in:
Ludovic CANDELLIER
2021-10-30 02:22:51 +02:00
parent da51da2530
commit 0d0e4deb16
158 changed files with 1114 additions and 412 deletions

View File

@@ -14,6 +14,11 @@ class Customer extends Model
return $this->hasMany(Invoice::class);
}
public function Deliveries()
{
return $this->hasMany(Delivery::class);
}
public function Orders()
{
return $this->hasMany(Order::class);