I'm using the modular structure as described in the blog below with Laravel 5.1 http://ziyahanalbeniz.blogspot.com.tr/2015/03/modular-structure-in-laravel-5.html
In fact I have a module user which has the following structure:
- Controllers
- Models
- Translations
- Views
-> index.blade.php
-> register.blade.php
In my Views directory I have a index.blade.php file and a register.blade.php file. In my index.blade.php file I use: @include('register') in order to include the register file within my index php file. But I get a view not found exception when calling my index file.
I have some trouble which is the correct path I have to add within my @include. @include('user.register') doesn't work neither. Any ideas? Thank you