{{__("Currency")}}

{{__('Currency Format')}}

{!! \App\Helpers\AdminForm::select('currency_main',\App\Currency::getAll(),$settings['currency_main'] ?? 'usd','dungdt-select2-field') !!}
{!! \App\Helpers\AdminForm::select('currency_format',[ ['id'=>'right','name'=>__('Right (100$)')], ['id'=>'right_space','name'=>__('Right with space (100 $)')], ['id'=>'left','name'=>__('Left ($100)')], ['id'=>'left_space','name'=>__('Left with space ($ 100)')], ],$settings['currency_format'] ?? 'right') !!}

{{__("Payment Gateways")}}

{{__('You can enable and disable your payment gateways here')}}

@php $all = config('booking.payment_gateways'); @endphp @foreach($all as $k=>$gateway) @php if(!class_exists($gateway)) continue; $obj = new $gateway($k); $options = $obj->getOptionsConfigsFormatted(); @endphp
{{$obj->name}}
@php App\Helpers\AdminForm::generate($options); @endphp
@endforeach