Loading app/Http/Controllers/DataController/DataBoatController.php 0 → 100644 +13 −0 Original line number Diff line number Diff line <?php namespace App\Http\Controllers; use Illuminate\Http\Request; class DataBoatController extends Controller { public static function fetch() { } } routes/api.php +2 −0 Original line number Diff line number Diff line Loading @@ -22,3 +22,5 @@ }); Route::post('/palanques', [App\Http\Controllers\ManualPalanqueeController::class, 'store']); Route::get('/boat', [App\Http\Controllers\DataBoatController::class, 'fetch']); routes/web.php +5 −0 Original line number Diff line number Diff line Loading @@ -237,6 +237,11 @@ ->post('manage/members/roles', [ManageAdherentController::class, 'update']) ->name('updateMembersRole'); /** Unsuscribe the user from a diving session */ Route::middleware('App\Http\Middleware\RightChecker') ->get('/unsubscribe/{ds_code}', [DivingUnsubscribeController::class, 'index']); Route::middleware('App\Http\Middleware\rightChecker') ->get('dive/{id}', [DivesList::class, 'show']) ->name('dives_show'); Loading Loading
app/Http/Controllers/DataController/DataBoatController.php 0 → 100644 +13 −0 Original line number Diff line number Diff line <?php namespace App\Http\Controllers; use Illuminate\Http\Request; class DataBoatController extends Controller { public static function fetch() { } }
routes/api.php +2 −0 Original line number Diff line number Diff line Loading @@ -22,3 +22,5 @@ }); Route::post('/palanques', [App\Http\Controllers\ManualPalanqueeController::class, 'store']); Route::get('/boat', [App\Http\Controllers\DataBoatController::class, 'fetch']);
routes/web.php +5 −0 Original line number Diff line number Diff line Loading @@ -237,6 +237,11 @@ ->post('manage/members/roles', [ManageAdherentController::class, 'update']) ->name('updateMembersRole'); /** Unsuscribe the user from a diving session */ Route::middleware('App\Http\Middleware\RightChecker') ->get('/unsubscribe/{ds_code}', [DivingUnsubscribeController::class, 'index']); Route::middleware('App\Http\Middleware\rightChecker') ->get('dive/{id}', [DivesList::class, 'show']) ->name('dives_show'); Loading