I have the strangest mistake in Laravel 5, and I haven't had this in any of my other projects.
Problem
I get the following error when trying to hit my application
There is no such file or directory (View: /home/vagrant/Code/resources/views/layout/master.blade.php) (View: /home/vagrant/Code/resources/views/layout/master.blade. PHP)
However in my directory structure

And in my click template
@extends('layout.master') @section('content') jfoewifjewo[ij @endsection
In my controller
public function index() { return view('home'); }
Has anyone else got into this problem? I have never encountered this before. Yes, the repository has read / write on local and manor.
UPDATE: I am on Laravel 5.0.13
source share