Files
.idea
app
bootstrap
config
database
deploy
public
resources
routes
api.php
channels.php
console.php
web.php
storage
tests
.drone.yml
.editorconfig
.env.example
.gitattributes
.gitignore
.styleci.yml
Dockerfile
README.md
artisan
composer.json
composer.lock
package-lock.json
package.json
phpunit.xml
post_deploy.sh
server.php
webpack.mix.js
eliteregistry/routes/web.php
2021-04-06 22:03:54 -07:00

18 lines
556 B
PHP

<?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 within a group which
| contains the "web" middleware group. Now create something great!
|
*/
Route::get('/', 'App\Http\Controllers\ShipsController@index');
Route::post('/', 'App\Http\Controllers\ShipsController@add');