Files
Faculty-Documentation/app/Providers/AppServiceProvider.php
2025-03-23 18:21:52 +05:30

29 lines
516 B
PHP

<?php
namespace App\Providers;
use Illuminate\Support\ServiceProvider;
use Illuminate\Support\Facades\View;
class AppServiceProvider extends ServiceProvider
{
/**
* Register any application services.
*/
public function register(): void
{
//
}
/**
* Bootstrap any application services.
*/
public function boot(): void
{
//
View::composer('*', function ($view) {
$view->with('dropdowns', config('dropdowns'));
});
}
}