mirror of
https://github.com/Bigherollc/wticreatorstudio.git
synced 2026-01-16 19:05:08 -05:00
22 lines
450 B
PHP
22 lines
450 B
PHP
<?php
|
|
namespace Modules\WTIJobBoard\Entities;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Eloquent\SoftDeletes;
|
|
|
|
class JobRequestSource extends Model
|
|
{
|
|
use SoftDeletes;
|
|
|
|
protected $table = "job_request_sources";
|
|
protected $guarded = ["id"];
|
|
protected $dates = ['deleted_at'];
|
|
|
|
protected $casts = [
|
|
'has_product' => 'boolean',
|
|
'default' => 'boolean',
|
|
'active' => 'boolean'
|
|
];
|
|
|
|
}
|