You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Tested this since that's how you look for them in functions and such.
The view folder got created as expected but the class is borked with a missing folder.
php artisan make:component navigation.item
# View/Components/navigation.item.php
# views/components/navigation/item.blade.php
...
/**
* Get the view / contents that represent the component.
*
* @return \Illuminate\View\View|string
*/
public function render()
{
return view('components.navigation.item');
}
The text was updated successfully, but these errors were encountered:
Description:
Does not create nested folders for blade files
Steps To Reproduce:
Expected it to be
Tested this since that's how you look for them in functions and such.
The view folder got created as expected but the class is borked with a missing folder.
The text was updated successfully, but these errors were encountered: