Mails
This commit is contained in:
parent
68b9d1ff88
commit
b9c26d06d0
75 changed files with 2143 additions and 818 deletions
42
app/Models/Insurance.php
Normal file
42
app/Models/Insurance.php
Normal file
|
|
@ -0,0 +1,42 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* Created by Reliese Model.
|
||||
*/
|
||||
|
||||
namespace App\Models;
|
||||
|
||||
use Carbon\Carbon;
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
/**
|
||||
* Class Insurance
|
||||
*
|
||||
* @property int $id
|
||||
* @property string $name
|
||||
* @property string $name_full
|
||||
* @property string $contact_emails
|
||||
* @property bool $active
|
||||
* @property Carbon $created_at
|
||||
* @property Carbon $updated_at
|
||||
*
|
||||
* @package App\Models
|
||||
*/
|
||||
class Insurance extends Model
|
||||
{
|
||||
protected $connection = 'mysql';
|
||||
|
||||
protected $table = 'insurances';
|
||||
|
||||
protected $casts = [
|
||||
'active' => 'bool',
|
||||
'contact_emails' => 'array'
|
||||
|
||||
];
|
||||
|
||||
protected $fillable = [
|
||||
'name',
|
||||
'contact_emails',
|
||||
'active'
|
||||
];
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue