laravel-vue-file-share/app/Providers/AppServiceProvider.php
2023-10-08 14:20:03 -07:00

26 lines
433 B
PHP

<?php
namespace App\Providers;
use Illuminate\Support\ServiceProvider;
use Laravel\Telescope\Telescope;
class AppServiceProvider extends ServiceProvider
{
/**
* Register any application services.
*/
public function register(): void
{
Telescope::ignoreMigrations();
//
}
/**
* Bootstrap any application services.
*/
public function boot(): void
{
//
}
}