@php $shopSettings = App\Models\User\UserShopSetting::where('user_id', $user->id)->first(); if ($shopSettings == null) { $shopSettings = new \stdClass(); $shopSettings->is_shop = 0; $shopSettings->catalog_mode = 0; } $donation = DB::table('user_donation_settings')->where('user_id', $user->id)->first(); $room = DB::table('user_room_settings')->where('user_id', $user->id)->first(); @endphp