Installed mongo db and backpack. Everything went smooth.
Tried to create a crud with php artisan backpack:crud Article.

It seems the error is raised on this line
|
$attributes = \Schema::getColumnListing($model->getTable()); |
I think there is a bigger issue in general, and I am not sure we can easily fix it, since ALL mongodb models should extend Jenssegers\Mongodb\Eloquent\Model and not the regular Laravel\Model.
Installed mongo db and backpack. Everything went smooth.
Tried to create a crud with
php artisan backpack:crud Article.It seems the error is raised on this line
Generators/src/Console/Commands/CrudControllerBackpackCommand.php
Line 141 in 1a773bf
I think there is a bigger issue in general, and I am not sure we can easily fix it, since ALL mongodb models should extend
Jenssegers\Mongodb\Eloquent\Modeland not the regularLaravel\Model.