文档 - Eloquent模型可用属性列表

时间:2017-04-28 10:32:56

标签: laravel eloquent laravel-eloquent

这可能是一个显而易见的问题,但是......

在哪里可以找到Eloquent模型的所有可用继承属性的列表,例如$dates$guarded$hidden Options +Indexes +MultiViews ,...?< / p>

我一直在挖掘Laravel文档(here)和Laravel API(https://laravel.com/docs/master)而没有运气。

感谢。

1 个答案:

答案 0 :(得分:0)

你可以在这个文件中看到:

ProjectRoot/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php

和此文件夹中的文件:

 ProjectRoot/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Concerns/

laravel doc: https://laravel.com/api/5.4/Illuminate/Database/Eloquent/Model.html

相关问题