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

20 lines
479 B
PHP

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