views now go in templates, unless it changes again. Those laracast are now kinda outdated. That one is from Aug 2014.
There's been many changes since then. Some of the stuff in the videos still apply.
The laracast I watched prior to the post and as stated outdated.
I will give it a shot under templates, so if the case inside templates we can add in layouts folder for core site templates
Also where are these changes noted. Coming from 4.2 to 5 or 4.3 docs mention nothing of this so where to find or know of these daily changes.
Thanks, Dave
You won't know til january when the final release hits, everything in L5 currently is a work in progress. It could still see major changes. I just hope that when L5 is final, the docs are completely up to date.
movepixels said:
I will give it a shot under templates,
Yes. View files go in the templates folder. The following code works:
Route::get('test', function() {
return view('welcome');
});
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community