“Laravel Get название поля столбца” Ответ

Laravel Get Список столбцов в таблице

use Illuminate\Support\Facades\Schema;

use Illuminate\Support\Facades\DB;

public function getTableColumns($table)
{
    return DB::getSchemaBuilder()->getColumnListing($table);

    // OR

    return Schema::getColumnListing($table);

}
Indian Gooner

Laravel Get название поля столбца

// You may need to run
composer require doctrine/dbal
// Retrieve laravel column type
$columnType = DB::getSchemaBuilder()->getColumnType($tableName, $colName)
// for example
$columnType = DB::getSchemaBuilder()->getColumnType('user', 'age')
Gegasoft

Ответы похожие на “Laravel Get название поля столбца”

Вопросы похожие на “Laravel Get название поля столбца”

Больше похожих ответов на “Laravel Get название поля столбца” по PHP

Смотреть популярные ответы по языку

Смотреть другие языки программирования