nanosanteservice/app/Models/NhInfosAuthorizationOfCareR...

21 lines
358 B
PHP
Raw Normal View History

2022-02-01 10:58:58 +00:00
<?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');
}
}