I'm developing a module and I'm trying to extend bill.php.blade
in index.php
The directory structure looks like this:
├── modules
│ ├── Blog
│ │ |
│ │ ├── Resources
│ │ │ ├── lang
│ │ │ └── views->index.blade.php
│ │ │ └── layouts
├── resources
|
└── views
├── layouts->bill.blade.php
So when I try @extends('resources.views.layouts.bill)
it throws View [resources.views.layouts.bill] not found
Any ideas? Thanks in advance