merge(['family_id' => $this->route('familyId')]); } public function authorize(): bool { return auth()->check(); } public function rules(): array { return [ 'family_id' => ['required', 'integer', 'min:1'], ]; } }