TIF_NGANJUK_E41220820/app/Providers/AppServiceProvider.php

30 lines
521 B
PHP

<?php
namespace App\Providers;
use Illuminate\Support\ServiceProvider;
use Illuminate\Pagination\Paginator;
use Carbon\Carbon;
class AppServiceProvider extends ServiceProvider
{
/**
* Register any application services.
*/
public function register(): void
{
//
}
/**
* Bootstrap any application services.
*/
public function boot(): void
{
Paginator::useBootstrap();
// SET BAHASA INDONESIA UNTUK TANGGAL
Carbon::setLocale('id');
}
}