$portfolio['portfolio_id'] ], [ 'id' => $portfolio['portfolio_id'] ?? null, 'title' => $portfolio['title'], 'wishlist' => $portfolio['wishlist'] ?? false, 'notes' => $portfolio['notes'], ]); } } public function rules(): array { return [ 'portfolio_id' => ['sometimes', 'nullable'], 'title' => ['required', 'string'], 'wishlist' => ['sometimes', 'nullable', 'boolean'], 'notes' => ['sometimes', 'nullable', 'string'], ]; } }