laravel-livewire-tables icon indicating copy to clipboard operation
laravel-livewire-tables copied to clipboard

artisan make broken for namespaced classes

Open xtfer opened this issue 5 years ago • 0 comments

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.

xtfer avatar Oct 22 '20 10:10 xtfer