I'm running into a weird issue where my page isnt' getting rendered in its entirety. The bottom bit is getting cut off and I'm not sure why.
I'd paste code, but it's a 3000+ line template im trying to implement.
I am doing it as follows in dashboard.master:
@include('dashboard.master.head')
...
@include('dashboard.master.header')
...
@include('dashboard.master.sidebar')
...
@include('dashboard.master.style_customizer')
...
@include('dashboard.master.page_header')
...
@yield('content')
...tons of lines here
It renders up to content correctly, and awhile after that but it seems to stop at some point.
example of my blade file calling my master
@extends('dashboard.master')
@section('content')
<p>This is my content</p>
@stop
Edit: I tried removing everything and just pasting the HTML template I have. It still just stops rendering towards the end of the page. So all I have now is literally the master file and the includes in my blade template that calls the master.
{application}/app/storage/views
folder, then refresh the one page that has that. Check that folder again, you'll see a view. Cat that out, see if there's anything wrong – Chris Forrence