openclassify/Modules/Listing/Providers/ListingServiceProvider.php
fatihalp f06943ce9d feat: add User management resource with CRUD operations and activity logging
- Created UserResource for managing users with form and table configurations.
- Implemented pages for creating, editing, listing users, and viewing user activities.
- Added UserPlugin for resource registration in Filament admin panel.
- Introduced CSS styles for panel quick creation and listing filters.
- Developed JavaScript modules for handling listing filters and home slider functionality.
2026-03-23 01:39:30 +03:00

23 lines
608 B
PHP

<?php
namespace Modules\Listing\Providers;
use Illuminate\Support\ServiceProvider;
class ListingServiceProvider extends ServiceProvider
{
protected string $moduleName = 'Listing';
protected string $moduleNameLower = 'listing';
public function boot(): void
{
$this->loadViewsFrom(module_path($this->moduleName, 'resources/views'), $this->moduleNameLower);
$this->loadMigrationsFrom(module_path($this->moduleName, 'Database/migrations'));
$this->loadRoutesFrom(module_path($this->moduleName, 'routes/web.php'));
}
public function register(): void
{}
}