We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix ResourceGenerator.php : use Illuminate\Support\Facades\Schema;
protected function getTableColumns() {
$table = $this->model->getConnection()->getTablePrefix().$this->model->getTable(); return Schema::getColumns($table); }
$name = $column['name']; $type = $column['type_name']; $default = $column['default'];
The text was updated successfully, but these errors were encountered:
Look at the fork https://github.com/dedermus/open-admin-core .git, which solves the problem with doctrine and works in Laravel 11
Sorry, something went wrong.
No branches or pull requests
Description:
fix ResourceGenerator.php :
use Illuminate\Support\Facades\Schema;
protected function getTableColumns()
{
$name = $column['name'];
$type = $column['type_name'];
$default = $column['default'];
Steps To Reproduce:
The text was updated successfully, but these errors were encountered: