21 lines
358 B
PHP
21 lines
358 B
PHP
|
<?php
|
||
|
|
||
|
/**
|
||
|
* Created by Reliese Model.
|
||
|
*/
|
||
|
|
||
|
namespace App\Models;
|
||
|
|
||
|
use Carbon\Carbon;
|
||
|
use Illuminate\Database\Eloquent\Model;
|
||
|
|
||
|
class NhInfosAuthorizationOfCareRequest extends Model
|
||
|
{
|
||
|
protected $table = 'nh_infos_authorization_of_care_requests';
|
||
|
|
||
|
public function network()
|
||
|
{
|
||
|
return $this->belongsTo(Network::class, 'network_id');
|
||
|
}
|
||
|
}
|