You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
319 B
PHTML
15 lines
319 B
PHTML
3 months ago
|
<?php
|
||
|
|
||
|
use App\Http\Controllers\CustomerController;
|
||
|
use Illuminate\Support\Facades\Route;
|
||
|
|
||
|
Route::get('/', function () {
|
||
|
return view('welcome');
|
||
|
});
|
||
|
|
||
|
Auth::routes();
|
||
|
|
||
|
Route::get('/home', [App\Http\Controllers\HomeController::class, 'index'])->name('home');
|
||
|
|
||
|
Route::resource('customers', CustomerController::class);
|