*/ public function rules(): array { return [ 'name' => ['required', 'string', 'max:255'], 'expires_at' => ['nullable', 'date', 'after:today'], ]; } }