PHP Classes

File: routes/web.php

Recommend this page to a friend!
  Classes of Hicri   Laravel GraphQL   routes/web.php   Download  
File: routes/web.php
Role: Example script
Content type: text/plain
Description: Example script
Class: Laravel GraphQL
Implements an API using GraphQL to query objects
Author: By
Last change:
Date: 4 days ago
Size: 492 bytes
 

Contents

Class file image Download
<?php

use Illuminate\Support\Facades\Route;

/*
|--------------------------------------------------------------------------
| Web Routes
|--------------------------------------------------------------------------
|
| Here is where you can register web routes for your application. These
| routes are loaded by the RouteServiceProvider and all of them will
| be assigned to the "web" middleware group. Make something great!
|
*/

Route::get('/', function () {
    return
view('welcome');
});