31 lines
497 B
PHP
31 lines
497 B
PHP
|
<?php
|
||
|
|
||
|
/**
|
||
|
* Created by Reliese Model.
|
||
|
*/
|
||
|
|
||
|
namespace App\Models;
|
||
|
|
||
|
use Carbon\Carbon;
|
||
|
use Illuminate\Database\Eloquent\Model;
|
||
|
|
||
|
class NhInfosInsurances extends Model
|
||
|
{
|
||
|
protected $table = 'nh_infos_insurances';
|
||
|
|
||
|
// protected $dates = [
|
||
|
// 'start_at',
|
||
|
// 'end_at'
|
||
|
// ];
|
||
|
|
||
|
public function network()
|
||
|
{
|
||
|
return $this->belongsTo(Network::class, 'network_id');
|
||
|
}
|
||
|
|
||
|
public function user()
|
||
|
{
|
||
|
return $this->belongsTo(User::class, 'user_id');
|
||
|
}
|
||
|
}
|