dstpabuaran.com/app/Settings/HomepageSettings.php
Yoga Pangestu 7d21a1e6db feat: add cart context and functionality, update welcome page with new components and styles
- Implemented CartContext for managing cart state, including adding, removing, and updating items.
- Added CartDrawer component to display cart items.
- Updated AppHeader to include cart item count.
- Enhanced welcome page with new layout, improved product image handling, and updated call-to-action buttons.
- Refactored homepage data types to accommodate new features and removed unused properties.
2026-08-13 17:19:56 +07:00

20 lines
306 B
PHP

<?php
namespace App\Settings;
use Spatie\LaravelSettings\Settings;
class HomepageSettings extends Settings
{
public ?string $hero_image_url;
public ?string $about_image_url;
public array $gallery_images;
public static function group(): string
{
return 'homepage';
}
}