Folder Structure

Use below Doctorly structure for modify and better understand the Doctorly.

1. Doctorly Laravel Folders
Folder Path Uses

Controller

app/Http/ All controller files here.

Middleware

app/ All Laravel Middlewares. you can add your custom also

Models

app/ All Laravel models. you can add your custom also

Migration

database/ All Database related migrations.

Seeders

database/ All Database related seeders. you can make dummy data from seeders.

Routes

routes/ You can add new route in routes/web.php or create api in routes/api.php.

Resources

resources/ All assets or blade files here.

vite.config.js

/ Vite or build related code. if you don't have knowledge about this then don't modify it.
2. Doctorly Laravel Component Files
File Path Uses

breadcrumb.blade.php

resources/views/components page title component, you can easily customize it.
3. Doctorly Laravel Auth Files
File Path Uses

login.blade.php

resources/views/auth login view page code, if you need to customize login you can do from this.

register.blade.php

resources/views/auth registration page view code.

verify.blade.php

resources/views/auth email verification page.

confirm.blade.php

resources/views/auth/password password confirmation page.

email.blade.php

resources/views/auth/password forget password page.

reset.blade.php

resources/views/auth/password reset password using email.