add permission, datatable and file services

This commit is contained in:
2025-04-29 13:35:25 +03:30
parent 3404f7ed09
commit 0ce8dc1030
39 changed files with 1623 additions and 3 deletions

View File

@@ -0,0 +1,27 @@
<?php
namespace App\Providers;
use App\Facades\DataTable\DataTable;
use Illuminate\Support\ServiceProvider;
class DataTableServiceProvider extends ServiceProvider
{
/**
* Register services.
*/
public function register(): void
{
$this->app->bind('datatable', function () {
return new DataTable();
});
}
/**
* Bootstrap services.
*/
public function boot(): void
{
//
}
}