Initial commit, using Laravel

This commit is contained in:
Gregorio Chiko Putra
2019-05-13 13:20:37 +07:00
commit d18cb0da59
88 changed files with 13379 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
<?php
namespace App\Http\Middleware;
use Illuminate\Foundation\Http\Middleware\CheckForMaintenanceMode as Middleware;
class CheckForMaintenanceMode extends Middleware
{
/**
* The URIs that should be reachable while maintenance mode is enabled.
*
* @var array
*/
protected $except = [
//
];
}