Files
shopit-back/app/Domains/Bootstrap/Services/AdminAppBootstrapService.php

20 lines
473 B
PHP

<?php
namespace App\Domains\Bootstrap\Services;
use App\Domains\Tenant\Models\AdminWebsiteType;
class AdminAppBootstrapService
{
/** @return array{website_type: AdminWebsiteType} */
public function get(string $domain): array
{
return [
'website_type' => AdminWebsiteType::query()
->with(['siteLogo', 'footerLogo', 'favicon'])
->where('dominio', $domain)
->firstOrFail(),
];
}
}