Folder Structure
Use below Doctorly structure for modify and better understand the Doctorly.
1. Doctorly Laravel Folders
Folder | Path | Uses |
---|---|---|
|
app/Http/ |
All controller files here. |
|
app/ |
All Laravel Middlewares. you can add your custom also |
|
app/ |
All Laravel models. you can add your custom also |
|
database/ |
All Database related migrations. |
|
database/ |
All Database related seeders. you can make dummy data from seeders. |
|
routes/ |
You can add new route in routes/web.php or create api in routes/api.php . |
|
resources/ |
All assets or blade files here. |
|
/ |
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 |
---|---|---|
|
resources/views/components |
page title component, you can easily customize it. |
3. Doctorly Laravel Auth Files
File | Path | Uses |
---|---|---|
|
resources/views/auth |
login view page code, if you need to customize login you can do from this. |
|
resources/views/auth |
registration page view code. |
|
resources/views/auth |
email verification page. |
|
resources/views/auth/password |
password confirmation page. |
|
resources/views/auth/password |
forget password page. |
|
resources/views/auth/password |
reset password using email. |