[PHP] Laravel 获取模型/表的所有字段

通过llama.cpp与羊驼聊天的网页界面- 详解 Serge 的启动使用

 

获取指定表的所有字段名:

use Illuminate\Support\Facades\Schema;

// 表名不带前缀
$columns = Schema::getColumnListing('admins');

 

Facade参考:https://laravel.com/docs/9.x/facades#facade-class-reference

Link:https://www.cnblogs.com/farwish/p/16294831.html

posted on 2022-05-21 12:15  ercom  阅读(694)  评论(0编辑  收藏  举报