![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/medad.corals.io/Corals/modules/TroubleTicket/Http/Requests/ |
<?php namespace Corals\Modules\TroubleTicket\Http\Requests; use Corals\Foundation\Http\Requests\BaseRequest; use Corals\Modules\TroubleTicket\Models\TroubleTicket; class TroubleTicketRequest extends BaseRequest { /** * Determine if the user is authorized to make this request. * * @return bool */ public function authorize() { $this->setModel(TroubleTicket::class); return $this->isAuthorized(); } /** * Get the validation rules that apply to the request. * * @return array */ public function rules() { $this->setModel(TroubleTicket::class); $rules = parent::rules(); if ($this->isUpdate() || $this->isStore()) { $rules = array_merge($rules, []); } if ($this->isStore()) { $rules = array_merge($rules, [ ]); } if ($this->isUpdate()) { $troubleTicket = $this->route('trouble_ticket'); $rules = array_merge($rules, [ ]); } return $rules; } protected function getValidatorInstance() { if ($this->isStore() || $this->isUpdate()) { $data = $this->all(); if (isset($data['is_public_owner'])) { $data['owner_type'] = null; $data['owner_id'] = null; } else { $data['public_owner'] = null; $data['owner_type'] = getModelMorphMap(\Corals\User\Models\User::class); } $this->getInputSource()->replace($data); } return parent::getValidatorInstance(); } public function attributes() { return [ 'public_owner.email' => 'public owner email', 'public_owner.name' => 'public owner email' ]; } }