diff --git a/app/Http/Controllers/LabelController.php b/app/Http/Controllers/LabelController.php index 4253a5f..5bed67f 100644 --- a/app/Http/Controllers/LabelController.php +++ b/app/Http/Controllers/LabelController.php @@ -16,31 +16,25 @@ class LabelController extends Controller public function create() { - } public function store(StorelabelRequest $request) { - } public function show(Label $label) { - } public function edit(Label $label) { - } public function update(UpdatelabelRequest $request, Label $label) { - } public function destroy(Label $label) { - } } diff --git a/app/Providers/AppServiceProvider.php b/app/Providers/AppServiceProvider.php index ebedcd9..e88ce3d 100644 --- a/app/Providers/AppServiceProvider.php +++ b/app/Providers/AppServiceProvider.php @@ -9,7 +9,6 @@ class AppServiceProvider extends ServiceProvider { public function register(): void { - } public function boot(): void diff --git a/bootstrap/app.php b/bootstrap/app.php index 7b162da..fe5a4b0 100644 --- a/bootstrap/app.php +++ b/bootstrap/app.php @@ -6,8 +6,8 @@ use Illuminate\Foundation\Configuration\Middleware; return Application::configure(basePath: dirname(__DIR__)) ->withRouting( - web: __DIR__.'/../routes/web.php', - commands: __DIR__.'/../routes/console.php', + web: __DIR__ . '/../routes/web.php', + commands: __DIR__ . '/../routes/console.php', health: '/up', ) ->withMiddleware(function (Middleware $middleware) {