laravel-livewire-tables
laravel-livewire-tables copied to clipboard
artisan make broken for namespaced classes
For example php artisan make:table BarTable --model=Models\Foo\Bar creates a class with the following query() method
public function query()
{
return ModelsFooBar::query();
}
This is pretty easy to fix, but noting it anyway.