25 lines
415 B
PHP
25 lines
415 B
PHP
<?php
|
|
|
|
namespace Modules\Crm\Entities;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class CrmMarketplace extends Model
|
|
{
|
|
/**
|
|
* The attributes that aren't mass assignable.
|
|
*
|
|
* @var array
|
|
*/
|
|
protected $guarded = ['id'];
|
|
|
|
/**
|
|
* The attributes that should be cast to native types.
|
|
*
|
|
* @var array
|
|
*/
|
|
protected $casts = [
|
|
'assigned_users' => 'array',
|
|
];
|
|
}
|