How to set the default value of an attribute on a Laravel model(如何在 Laravel 模型上设置属性的默认值)
问题描述
如何在 Laravel 模型上设置属性的默认值?
How to set the default value of an attribute on a Laravel model?
我应该在创建迁移时设置默认值还是应该在模型类中设置它?
Should I set the default when creating a migration or should I set it in the model class?
推荐答案
您也可以在 Model 中设置 Default 属性>
You can set Default attribute in Model also>
protected $attributes = [
'status' => self::STATUS_UNCONFIRMED,
'role_id' => self::ROLE_PUBLISHER,
];
您可以在这些链接中找到详细信息
You can find the details in these links
1.) 如何为 Laravel/Eloquent 模型设置默认属性值?
2.) https://laracasts.com/index.php/discuss/channels/eloquent/eloquent-help-generating-attribute-values-before-creating-record
您还可以使用 Accessors &用于此的突变器您可以在 Laravel 文档中找到详细信息1.) https://laravel.com/docs/4.2/eloquent#accessors-and-mutators
You can also Use Accessors & Mutators for this You can find the details in the Laravel documentation 1.) https://laravel.com/docs/4.2/eloquent#accessors-and-mutators
2.) https://scotch.io/tutorials/automatically-format-laravel-database-fields-with-accessors-and-mutators
3.) Laravel 4 中的通用访问器和修改器
这篇关于如何在 Laravel 模型上设置属性的默认值的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何在 Laravel 模型上设置属性的默认值
- PHP foreach() 与数组中的数组? 2022-01-01
- 如何使用 Google API 在团队云端硬盘中创建文件夹? 2022-01-01
- Laravel 5:Model.php 中的 MassAssignmentException 2021-01-01
- 使用 GD 和 libjpeg 支持编译 PHP 2022-01-01
- 如何在 Symfony2 中正确使用 webSockets 2021-01-01
- Oracle 即时客户端 DYLD_LIBRARY_PATH 错误 2022-01-01
- 覆盖 Magento 社区模块控制器的问题 2022-01-01
- 如何从数据库中获取数据以在 laravel 中查看页面? 2022-01-01
- PHP - if 语句中的倒序 2021-01-01
- openssl_digest vs hash vs hash_hmac?盐与盐的区别HMAC? 2022-01-01