We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1058209 commit b825fb5Copy full SHA for b825fb5
routes/web.php
@@ -1,6 +1,5 @@
1
<?php
2
3
-use App\Http\Controllers\Settings\DeleteController;
4
use App\Http\Controllers\Settings\PasswordController;
5
use App\Http\Controllers\Settings\ProfileController;
6
use Illuminate\Foundation\Application;
@@ -16,7 +15,7 @@
16
15
]);
17
})->name('home');
18
19
-Route::get('dashboard', function(){
+Route::get('dashboard', function () {
20
return Inertia::render('Dashboard');
21
})->middleware(['auth', 'verified'])->name('dashboard');
22
tests/Feature/Settings/ProfileUpdateTest.php
@@ -50,7 +50,6 @@
50
$this->assertNotNull($user->refresh()->email_verified_at);
51
});
52
53
-
54
// Delete Profile Tests
55
56
test('user can delete their account', function () {
0 commit comments