['required', 'string', 'url', 'max:255'], 'caption' => ['nullable', 'string', 'max:1000'], 'calories' => ['nullable', 'integer', 'min:0'], 'proteins' => ['nullable', 'numeric', 'min:0'], 'carbs' => ['nullable', 'numeric', 'min:0'], 'fats' => ['nullable', 'numeric', 'min:0'], 'title' => ['required', 'string', 'max:255'], 'eaten_at' => ['required', 'date'], ]; } public function authorize(): bool { return true; } }