@php use App\Http\Controllers\ShopController; use App\Models\Setting; use App\Models\Contact; $shop = new ShopController(); $system_setting = Setting::where('shop_id', $shop->checkShop())->first(); $contact = Contact::where('shop_id', $shop->checkShop())->first(); @endphp