@if (Auth::user()->shop->logo != null) {{ get_setting('site_name') }} @else {{ get_setting('site_name') }} @endif

{{ Auth::user()->shop->name }}

{{ Auth::user()->email }}

@if(Auth::user()->user_type == 'seller') @php /*$shopid = Auth::user()->shop->id; $shop = DB::table('shops')->find($shopid); $bzj_money = $shop->bzj_money; $must_bzj = get_setting('must_guarantee'); $must_bzj == 'on' ? 1 : 0; $show_modal = 0; $show_modal2 = 0; if( $must_bzj && $bzj_money < get_setting('guarantee_money') ) { $show_modal = 1; } if( strpos($_SERVER['REQUEST_URI'],'money-withdraw-requests') !== false) { $show_modal2 = 1; } $must_guarantee_close = get_setting('must_guarantee_close') == 'on' ? 1 : 0;*/ $shopid = Auth::user()->shop->id; $shop = DB::table('shops')->find($shopid); $bzj_money = $shop->bzj_money; $must_bzj = $shop->mandatory_payment_switch; $show_modal = 0; $show_modal2 = 0; if( $must_bzj && $bzj_money < $shop->compulsory_margin_amount ) { $show_modal = 1; } if( strpos($_SERVER['REQUEST_URI'],'money-withdraw-requests') !== false) { $show_modal2 = 1; } $must_guarantee_close = get_setting('must_guarantee_close') == 'on' ? 1 : 0; @endphp @endif