mirror of
https://github.com/solidtime-io/solidtime.git
synced 2026-06-06 20:37:32 +00:00
51 lines
1.1 KiB
PHP
51 lines
1.1 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Http\Requests\V1\Member;
|
|
|
|
use App\Enums\Role;
|
|
use App\Http\Requests\V1\BaseFormRequest;
|
|
use App\Models\Organization;
|
|
use Illuminate\Contracts\Validation\ValidationRule;
|
|
use Illuminate\Validation\Rule;
|
|
|
|
/**
|
|
* @property Organization $organization
|
|
*/
|
|
class MemberUpdateRequest extends BaseFormRequest
|
|
{
|
|
/**
|
|
* Get the validation rules that apply to the request.
|
|
*
|
|
* @return array<string, array<string|ValidationRule|\Illuminate\Contracts\Validation\Rule>>
|
|
*/
|
|
public function rules(): array
|
|
{
|
|
return [
|
|
'role' => [
|
|
'string',
|
|
Rule::enum(Role::class),
|
|
],
|
|
'billable_rate' => array_merge(
|
|
[
|
|
'nullable',
|
|
],
|
|
$this->moneyRules()
|
|
),
|
|
];
|
|
}
|
|
|
|
public function getBillableRate(): ?int
|
|
{
|
|
$input = $this->input('billable_rate');
|
|
|
|
return $input !== null && $input !== 0 ? (int) $this->input('billable_rate') : null;
|
|
}
|
|
|
|
public function getRole(): Role
|
|
{
|
|
return Role::from($this->input('role'));
|
|
}
|
|
}
|