Dashboard Footers
The footers in dashboard is set through layouts located at
layouts/dashboard/default.blade.php
folder.
Following is the example of default header in default layout of dashboard:
<x-partials._body_footer :isBuynow="true" />
Note: For other footers use different layouts
Landing Page Footers
You can set different footers for different pages by following these steps:
- Locate the File:
- Open the template file for the specific page where you want to set a different header. For example, to change the header on the "startup-landing-page" of landing page, navigate to the corresponding template file (e.g., Modules/LandingPages/Resources/views/startup-landing-page.blade.php).
- Update the Code:
- Update the Code: Modify the header-related code in the template file. For example, add or update the isFooter1 property as shown below:
<x-app-layout layout="landing" :isHeader1=true :isFooter1=false>
- Below is the layout file code:
-
@if ($isFooter1) @include('landingpages::components.partials.footer') @else @include('landingpages::components.partials.footer-one') @endif
-