Fix on invoices, add delivery reference, wip on dashboard concurrency requests designed on template

This commit is contained in:
Ludovic CANDELLIER
2023-02-17 00:05:03 +01:00
parent 878ec7a8f2
commit 8e571de523
26 changed files with 555 additions and 130 deletions

View File

@@ -12,6 +12,11 @@ use App\Models\Shop\Customer;
class Customers
{
public static function count()
{
return Customer::count();
}
public static function editProfile($id = false)
{
$id = $id ? $id : self::getId();