Laravel 模型資訊 是 Spatie 的一個包,用於取得 Laravel 中所有模型的資訊項目。如果你正在建立需要以程式設計方式檢查模型的功能,此套件會很有幫助。 【相關推薦:laravel影片教程】
例如,你可以訪問許多重要的詳細信息,如資料庫表名、屬性、關係等:
use Spatie\ModelInfo\ModelInfo; $model = ModelInfo::for(Post::class); $model->attributes; $model->relations; // etc. // 属性和关系是集合 $model->attributes->first()->name; // title $model->attributes->first()->type; // string(255) $model->attributes->first()->phpType; // string
我在這個包中註意到的一個很棒的功能是獲取項目中的所有模型:
// 返回所有应用模型的集合 $models = ModelFinder::all();
要了解更多信息,請查看Freek Van der Herten 的文 Getting information about all the models in your Laravel app。你可以在 spatie/laravel-model-info的 GitHub 上取得文件和原始碼。
原文網址:https://laravel-news.com/laravel-model-info
翻譯網址:https://learnku.com/laravel/t/71822
更多程式相關知識,請造訪:程式設計影片! !
以上是Laravel擴充推薦:取得模型資訊工具'laravel-model-info”的詳細內容。更多資訊請關注PHP中文網其他相關文章!