Skip to content

Commit aa38161

Browse files
committed
restructure files/folders in js folder
1 parent 15c8305 commit aa38161

File tree

184 files changed

+5124
-127
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

184 files changed

+5124
-127
lines changed

app/Http/Controllers/Auth/AuthenticatedSessionController.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ class AuthenticatedSessionController extends Controller
1818
*/
1919
public function create(): Response
2020
{
21-
return Inertia::render('Auth/Login', [
21+
return Inertia::render('auth/Login', [
2222
'canResetPassword' => Route::has('password.request'),
2323
'status' => session('status'),
2424
]);

app/Http/Controllers/Auth/ConfirmablePasswordController.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ class ConfirmablePasswordController extends Controller
1717
*/
1818
public function show(): Response
1919
{
20-
return Inertia::render('Auth/ConfirmPassword');
20+
return Inertia::render('auth/ConfirmPassword');
2121
}
2222

2323
/**

app/Http/Controllers/Auth/EmailVerificationPromptController.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,6 @@ public function __invoke(Request $request): RedirectResponse|Response
1717
{
1818
return $request->user()->hasVerifiedEmail()
1919
? redirect()->intended(route('dashboard', absolute: false))
20-
: Inertia::render('Auth/VerifyEmail', ['status' => session('status')]);
20+
: Inertia::render('auth/VerifyEmail', ['status' => session('status')]);
2121
}
2222
}

app/Http/Controllers/Auth/NewPasswordController.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ class NewPasswordController extends Controller
2121
*/
2222
public function create(Request $request): Response
2323
{
24-
return Inertia::render('Auth/ResetPassword', [
24+
return Inertia::render('auth/ResetPassword', [
2525
'email' => $request->email,
2626
'token' => $request->route('token'),
2727
]);

app/Http/Controllers/Auth/PasswordResetLinkController.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ class PasswordResetLinkController extends Controller
1717
*/
1818
public function create(): Response
1919
{
20-
return Inertia::render('Auth/ForgotPassword', [
20+
return Inertia::render('auth/ForgotPassword', [
2121
'status' => session('status'),
2222
]);
2323
}

app/Http/Controllers/Auth/RegisteredUserController.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ class RegisteredUserController extends Controller
2020
*/
2121
public function create(): Response
2222
{
23-
return Inertia::render('Auth/Register');
23+
return Inertia::render('auth/Register');
2424
}
2525

2626
/**

app/Http/Controllers/Settings/PasswordController.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ class PasswordController extends Controller
1818
*/
1919
public function edit(Request $request): Response
2020
{
21-
return Inertia::render('Settings/Password', [
21+
return Inertia::render('settings/Password', [
2222
'mustVerifyEmail' => $request->user() instanceof MustVerifyEmail,
2323
'status' => session('status'),
2424
]);

app/Http/Controllers/Settings/ProfileController.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ class ProfileController extends Controller
1919
*/
2020
public function edit(Request $request): Response
2121
{
22-
return Inertia::render('Settings/Profile', [
22+
return Inertia::render('settings/Profile', [
2323
'mustVerifyEmail' => $request->user() instanceof MustVerifyEmail,
2424
'status' => session('status'),
2525
]);

resources/js/Components/AppSidebar.vue

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<script setup lang="ts">
22
import { Github, BookOpenText } from 'lucide-vue-next';
3-
import NavMain from '@/Components/NavMain.vue';
4-
import NavFooter from '@/Components/NavFooter.vue';
5-
import NavUser from '@/Components/NavUser.vue';
3+
import NavMain from '@/components/NavMain.vue';
4+
import NavFooter from '@/components/NavFooter.vue';
5+
import NavUser from '@/components/NavUser.vue';
66
import {
77
Sidebar,
88
SidebarContent,
@@ -11,7 +11,7 @@ import {
1111
SidebarMenu,
1212
SidebarMenuButton,
1313
SidebarMenuItem,
14-
} from '@/Components/ui/sidebar';
14+
} from '@/components/ui/sidebar';
1515
import ApplicationLogo from './ApplicationLogo.vue';
1616
1717
interface NavItem {

resources/js/Components/Heading.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<script setup lang="ts">
2-
import { Separator } from '@/Components/ui/separator'
2+
import { Separator } from '@/components/ui/separator'
33
44
interface Props {
55
title: string

0 commit comments

Comments
 (0)