10 lines
150 B
PHP
10 lines
150 B
PHP
<?php
|
|
|
|
use Illuminate\Support\Facades\Route;
|
|
|
|
Route::view('/', 'welcome');
|
|
|
|
Artisan::command('inspire', function () {
|
|
$this->comment('pest');
|
|
});
|