Create client frontend

This commit is contained in:
Peter Papp
2021-04-29 08:57:53 +02:00
parent 13ec1257e1
commit 19bce195b4
22 changed files with 462 additions and 43 deletions
+2 -1
View File
@@ -21,7 +21,8 @@ trait Oasis
public function clients()
{
return $this->hasMany(Client::class, 'user_id', 'id');
return $this->hasMany(Client::class, 'user_id', 'id')
->orderByDesc('created_at');
}
public function regularInvoices()