{{-- resources/views/admin/dashboard/komisyon/poslar.blade.php --}} @extends('admin.dashboard.layouts.app') @section('title', panel_setting_title('Terminal Kontrolü')) @push('style-libraries') @endpush @push('styles') @endpush @section('content')

Pos Ayarları

{{-- button --}} {{-- button --}}
@forelse ($pos as $item) @php // Örnek olarak veritabanından gelen JSON formatı (pos->data) $row = json_decode($item->data); $bank = $banks->where('id', $row->bank_id)->first(); $currency = $currencies->where('id', $row->currency_id)->first(); @endphp @empty @endforelse
ID POS ID POS Adı Durum POS Bankası POS Para Birimi İşlemler
{{ $item->id }} {{ $row->virtual_pos_id ?? '-' }} {{ $row->name ?? '-' }} {{ $row->status ? 'Aktif' : 'Pasif' }} {{ $bank ? $bank->name : '-' }} {{ $currency ? $currency->name : '-' }} $item->id]) }}' class="btn bg-danger-custom rounded-circle" style="margin-left:5px" onclick="return confirm('Silmek istediğinize emin misiniz?')">
Kayıt bulunamadı.
@include('admin.components.modals.add-commission-pos', [ 'currencies' => $currencies, 'cardFamilies' => $cardFamilies, 'banks' => $banks, ]) @include('admin.components.modals.edit-commission-pos', [ 'currencies' => $currencies, 'cardFamilies' => $cardFamilies, 'banks' => $banks, ]) @endsection @push('script-libraries') @endpush @push('scripts') @endpush