To start development from scratch, we have provided barebone.blade.php file to get you started with the basic structure.
But, before making any changes inside the barebone.blade.php file. Kindly follow the instructions mentioned below :
<x-slot:pageTitle>Title</x-slot:pageTitle>
<x-slot:headerFiles>
<!-- BEGIN CUSTOM STYLE FILE -->
<!-- END CUSTOM STYLE FILE -->
</x-slot>
<!-- BEGIN CUSTOM SCRIPTS FILE -->
<x-slot:footerFiles>
</x-slot>
<!-- END CUSTOM SCRIPTS FILE -->
<div class="row layout-top-spacing">
<!-- CONTENT HERE -->
</div>
Below is the complete code
<x-base-layout :scrollspy="false">
<x-slot:pageTitle>
{{$title}}
</x-slot>
<!-- BEGIN GLOBAL MANDATORY STYLES -->
<x-slot:headerFiles>
<!-- BEGIN CUSTOM STYLE FILE -->
<!-- END CUSTOM STYLE FILE -->
</x-slot>
<!-- END GLOBAL MANDATORY STYLES -->
<div class="row layout-top-spacing">
<!-- CONTENT HERE -->
</div>
<!-- BEGIN CUSTOM SCRIPTS FILE -->
<x-slot:footerFiles>
</x-slot>
<!-- END CUSTOM SCRIPTS FILE -->
</x-base-layout>