PHP Classes

File: chatapp/bootstrap/app.php

Recommend this page to a friend!
  Classes of Faris AL-Otabi   Chat App Laravel   chatapp/bootstrap/app.php   Download  
File: chatapp/bootstrap/app.php
Role: Example script
Content type: text/plain
Description: Example script
Class: Chat App Laravel
Chat systen that support multiple rooms
Author: By
Last change:
Date: 9 months ago
Size: 566 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',
       
channels: __DIR__.'/../routes/channels.php',
       
health: '/up',
    )
    ->
withMiddleware(function (Middleware $middleware) {
       
//
   
})
    ->
withExceptions(function (Exceptions $exceptions) {
       
//
   
})->create();