D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
forge
/
hms.dentostock.com
/
app
/
Repositories
/
Filename :
IpdConsultantRegisterRepository.php
back
Copy
<?php namespace App\Repositories; use App\Models\IpdConsultantRegister; use Exception; use Symfony\Component\HttpKernel\Exception\UnprocessableEntityHttpException; /** * Class IpdConsultantRegisterRepository * * @version September 9, 2020, 6:56 am UTC */ class IpdConsultantRegisterRepository extends BaseRepository { protected $fieldSearchable = [ 'ipd_patient_department_id', 'applied_date', 'doctor_id', 'instruction', 'instruction_date', ]; public function getFieldsSearchable() { return $this->fieldSearchable; } public function model() { return IpdConsultantRegister::class; } public function store(array $input) { try { for ($i = 0; $i < count($input['applied_date']); $i++) { if ($input['applied_date'][$i] == null || $input['instruction_date'][$i] == null) { return false; } $ipdConsultantInstruction = [ 'ipd_patient_department_id' => $input['ipd_patient_department_id'], 'applied_date' => $input['applied_date'][$i], 'doctor_id' => $input['doctor_id'][$i], 'instruction_date' => $input['instruction_date'][$i], 'instruction' => $input['instruction'][$i], ]; $this->model->create($ipdConsultantInstruction); } } catch (Exception $e) { throw new UnprocessableEntityHttpException($e->getMessage()); } return true; } }