[Blade] Including file with same name as its parent directory

Assuming the following file structure:

Components
├── Footer
│   ├── Footer.blade.php
├── Header
│   ├── Header.blade.php

Is there any way to make blade understand @include('Components.Footer') instead of having to write it like @include('Components.Footer.Footer')?

Thanks :smile: