TIF_NGANJUK_E41220949/app/Providers/AppServiceProvider.php

29 lines
564 B
PHP

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