You can create Blade view files under the resources/views/custom
folder. These files will override the default ones.
- Copy the default view file under the
resources/views/custom
folder, maintaining the folder location. Imagine that you want to customize thedashboard
view, you should copyresources/views/dashboard
in toresources/views/custom/dashboard
. - Modify the view file inside the
resources/views/custom
folder using the Blade templating language. - If you're caching the views, you must clear the cache to see the changes, execute
php artisan view:clear
.