12 lines
180 B
PHP
12 lines
180 B
PHP
<?php
|
|
|
|
use Illuminate\Support\Facades\Route;
|
|
|
|
Route::get('/', function () {
|
|
return view('landing');
|
|
});
|
|
|
|
Route::get('/api-test', function () {
|
|
return view('api-test');
|
|
});
|