try return View::make('home');
instead of 'master'
That got me somewhere, but the header and footer do not show up. And, I tried using @include to get the header to show up and it gives me 502 bad gateway on nginx.
Hello there again, please do not use ... @yield('layout.header') @yield('layout.footer') ...
instead try using
<html>
<head></head>
<body>
@include('layout.header')
@yield('content')
@include('layout.footer')
</body>
</html>
and remove from both footer and header first line ( @extends('master')
)
Have fun
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community