{{-- table loader --}}
{{__('admin.loading')}}
{{-- table loader --}} {{-- table content --}} @foreach ($paymentbrands as $paymentbrand) @endforeach
{{__('admin.image')}} {{__('admin.name')}} {{__('admin.email')}} {{__('admin.phone')}} {{__('admin.ban_status')}} {{__('admin.control')}}
{{ $paymentbrand->name }} {{ $paymentbrand->email }} {{ $paymentbrand->phone }} @if ($paymentbrand->is_blocked) {{ __('admin.Prohibited') }} @else {{ __('admin.Unspoken') }} @endif
{{-- table content --}} {{-- no data found div --}} @if ($paymentbrands->count() == 0)
{{__('admin.there_are_no_matches_matching')}}
@endif {{-- no data found div --}}
{{-- pagination links div --}} @if ($paymentbrands->count() > 0 && $paymentbrands instanceof \Illuminate\Pagination\AbstractPaginator )
{{$paymentbrands->links()}}
@endif {{-- pagination links div --}}