I've used a base template for my site and I extend from this in all my pages
@extends('master')
I have also then created a further template for sub pages which includes the extend as above. I then reference that in the sub pages:
@extends('subpage')
The sub page includes the master content and then the subpage content. You can also then append to any sections content from the master layout.
I also have a number of partials which I reuse around my site
@include('widget')
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community