PHP Classes

File: routes/inertia.php

Recommend this page to a friend!
  Classes of Naif Alshaye   PHP ChatGPT API Seeder   routes/inertia.php   Download  
File: routes/inertia.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: PHP ChatGPT API Seeder
Generate constant seed data using ChatGPT API
Author: By
Last change:
Date: 10 months ago
Size: 569 bytes
 

Contents

Class file image Download
<?php

use Illuminate\Support\Facades\Route;
use
Laravel\Nova\Http\Requests\NovaRequest;

/*
|--------------------------------------------------------------------------
| Tool Routes
|--------------------------------------------------------------------------
|
| Here is where you may register Inertia routes for your tool. These are
| loaded by the ServiceProvider of the tool. The routes are protected
| by your tool's "Authorize" middleware by default. Now - go build!
|
*/

Route::get('/', function (NovaRequest $request) {
    return
inertia('ChatgptSeeder');
});