* feat: modalidades de casamento e etapas corporativas * feat: home editorial e header/footer conforme preview * docs: proposta openspec home editorial * test: CTA hero agora ancora #sobre conforme preview * test: speed browser suite via visit reuse Collapse route×viewport cartesian products, merge home motion asserts, skip existing VisualContentSeeder JPEGs, ignore Screenshots.
30 lines
789 B
PHP
30 lines
789 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Application\Data;
|
|
|
|
use App\Models\PortfolioCase;
|
|
use App\Models\Service;
|
|
use App\Models\SiteSetting;
|
|
use App\Models\Testimonial;
|
|
use App\Models\WeddingPackage;
|
|
use Illuminate\Database\Eloquent\Collection;
|
|
|
|
final readonly class HomeContent
|
|
{
|
|
/**
|
|
* @param Collection<int, Service> $featuredServices
|
|
* @param Collection<int, PortfolioCase> $featuredCases
|
|
* @param Collection<int, Testimonial> $testimonials
|
|
* @param Collection<int, WeddingPackage> $packages
|
|
*/
|
|
public function __construct(
|
|
public SiteSetting $settings,
|
|
public Collection $featuredServices,
|
|
public Collection $featuredCases,
|
|
public Collection $testimonials,
|
|
public Collection $packages,
|
|
) {}
|
|
}
|