issue #1 reset form resets selected icon to empty

This commit is contained in:
kplaczek
2018-04-04 19:57:07 +02:00
commit bcc445f75a
196 changed files with 49208 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
<?php
use Illuminate\Http\Request;
/*
|--------------------------------------------------------------------------
| API Routes
|--------------------------------------------------------------------------
|
| Here is where you can register API routes for your application. These
| routes are loaded by the RouteServiceProvider within a group which
| is assigned the "api" middleware group. Enjoy building your API!
|
*/
Route::middleware('auth:api')->get('/user', function (Request $request) {
return $request->user();
});