Updated datatables, using @pa instead of @js/@css, using conditionalPaging in datatables
All checks were successful
Create Docker Image / Build Docker Image (x86_64) (push) Successful in 35s
Create Docker Image / Final Docker Image Manifest (push) Successful in 10s

This commit is contained in:
2024-07-28 21:33:30 +10:00
parent 1c4cb6f38c
commit 5f10175b35
18 changed files with 230 additions and 670 deletions

View File

@@ -5,11 +5,9 @@ namespace App\Providers;
use Illuminate\Support\Facades\Gate;
use Illuminate\Support\ServiceProvider;
use Intuit\Traits\IntuitSocialite;
use Leenooks\Traits\SingleOrFail;
class AppServiceProvider extends ServiceProvider
{
use SingleOrFail;
use IntuitSocialite;
/**
@@ -17,7 +15,6 @@ class AppServiceProvider extends ServiceProvider
*/
public function register(): void
{
}
/**
@@ -25,8 +22,6 @@ class AppServiceProvider extends ServiceProvider
*/
public function boot(): void
{
self::bootSingleOrfail();
Gate::define('wholesaler', function ($user) {
return $user->isWholesaler();
});
@@ -37,4 +32,4 @@ class AppServiceProvider extends ServiceProvider
$this->bootIntuitSocialite();
}
}
}