ALPHA 3.0.1e

This commit is contained in:
TheGamecraft
2018-07-18 21:24:34 -04:00
parent 4fa17f4136
commit 636c17441e
22 changed files with 1272 additions and 92 deletions

View File

@@ -1,4 +1,5 @@
<?php
use \App\Notifications\Alert;
/*
|--------------------------------------------------------------------------
| Web Routes
@@ -27,7 +28,13 @@ Route::get('/admin/calendar', 'CalendarController@index');
/* Other Route */
Route::get('/test', function () {
\App\Log::saveLog('Test');
$today = new \App\Schedule;
$today->date = "2018-07-18";
$today->type = "pilotage";
$today->data = ['begin_at' => '09:30','end_at' => '12:00'];
$today->save();
});