PHP Classes

File: bootstrap/app.php

Recommend this page to a friend!
  Classes of Okanlawon Anuoluwapo   Book Library   bootstrap/app.php   Download  
File: bootstrap/app.php
Role: Example script
Content type: text/plain
Description: Example script
Class: Book Library
Application to manage a book library
Author: By
Last change:
Date: 23 days ago
Size: 513 bytes
 

Contents

Class file image Download
<?php

use Illuminate\Foundation\Application;
use
Illuminate\Foundation\Configuration\Exceptions;
use
Illuminate\Foundation\Configuration\Middleware;

return
Application::configure(basePath: dirname(__DIR__))
    ->
withRouting(
       
web: __DIR__.'/../routes/web.php',
       
commands: __DIR__.'/../routes/console.php',
       
health: '/up',
    )
    ->
withMiddleware(function (Middleware $middleware) {
       
//
   
})
    ->
withExceptions(function (Exceptions $exceptions) {
       
//
   
})->create();