products now have an image

This commit is contained in:
2026-04-09 18:40:09 -06:00
parent 6d6194eeb6
commit 519f944139
6 changed files with 66 additions and 21 deletions
+1 -1
View File
@@ -10,5 +10,5 @@ class Product extends Model
/** @use HasFactory<\Database\Factories\ProductFactory> */
use HasFactory;
protected $fillable = ['name', 'description', 'price_cents'];
protected $fillable = ['name', 'description', 'price_cents', 'image_url'];
}