Laravel validations$errorMessage = "NFL Competition already exist for year $this->year and with the selected competition type.";return [ 'name' => 'string', 'abbreviation' => 'required|max:10', 'year' => 'required|digits:4|integer|min:1900|max:' . (date('Y') + 1), 'competition_type_id' => ['required', 'string', new IsCompositeUnique('basketball_competitions',...
Wednesday, 20 September 2023
Monday, 26 June 2023
Laravel Nova ReadOnly Problems
On Laravel Nova, when creating record field with readonly and default values are not submitted. This is the correct way to work around it.Text::make("Field Name", 'field_name') ->withMeta( [ 'extraAttributes' => ['readonly' => true], 'value' => $this->field_name ?? 'Default Value' ]),&nb...