39 lines
685 B
PHP
39 lines
685 B
PHP
<?php
|
|
|
|
/**
|
|
* Created by Reliese Model.
|
|
*/
|
|
|
|
namespace App\Models;
|
|
|
|
use Carbon\Carbon;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
/**
|
|
* Class NhHealthCareSheetsPerformance
|
|
*
|
|
* @property int $id
|
|
* @property int $sheet_id
|
|
* @property int $performance_id
|
|
* @property Carbon $created_at
|
|
* @property Carbon $updated_at
|
|
*
|
|
* @package App\Models
|
|
*/
|
|
class NhHealthCareSheetsPerformance extends Model
|
|
{
|
|
protected $table = 'nh_health_care_sheets_performances';
|
|
|
|
protected $casts = [
|
|
'sheet_id' => 'int',
|
|
'performance_id' => 'int'
|
|
];
|
|
|
|
protected $fillable = [
|
|
'sheet_id',
|
|
'performance_id',
|
|
'created_at',
|
|
'updated_at'
|
|
];
|
|
}
|