Loading app/Models/DivingSignUpModel.php +1 −1 Original line number Diff line number Diff line Loading @@ -7,7 +7,7 @@ class DivingSignUpModel extends Model { protected $table = 'car_registration'; protected $table = 'CAR_REGISTRATION'; protected $primaryKey = ['us_id', 'ds_code']; protected $keyType = ['int', 'string']; protected $fillable = ['US_ID', 'DS_CODE', 'REG_ACTIVE']; Loading routes/web.php +2 −1 Original line number Diff line number Diff line Loading @@ -56,7 +56,8 @@ return view('welcome'); })->name('homepage'); Route::get('/dives', [DivingSignUpController::class, 'show'])->name('dives'); Route::middleware('auth:sanctum')->get('/dives', [DivingSignUpController::class, 'show'])->name('dives'); Route::get('/test', function() { Loading Loading
app/Models/DivingSignUpModel.php +1 −1 Original line number Diff line number Diff line Loading @@ -7,7 +7,7 @@ class DivingSignUpModel extends Model { protected $table = 'car_registration'; protected $table = 'CAR_REGISTRATION'; protected $primaryKey = ['us_id', 'ds_code']; protected $keyType = ['int', 'string']; protected $fillable = ['US_ID', 'DS_CODE', 'REG_ACTIVE']; Loading
routes/web.php +2 −1 Original line number Diff line number Diff line Loading @@ -56,7 +56,8 @@ return view('welcome'); })->name('homepage'); Route::get('/dives', [DivingSignUpController::class, 'show'])->name('dives'); Route::middleware('auth:sanctum')->get('/dives', [DivingSignUpController::class, 'show'])->name('dives'); Route::get('/test', function() { Loading