@extends('backoffice.layouts.app') @push('styles') @endpush @section('content')
{{-- HEADER --}}
Provider List
Manage game providers, codes, types, and status
{{ $providers->total() }} Providers
{{-- ALERT --}} @if (session('success')) @endif @if (session('error')) @endif {{-- SEARCH --}}
Search Provider
Cari provider berdasarkan nama, code, atau type
@csrf
@if (!empty($search)) Reset @endif
{{-- TABLE --}}
{{-- HEADER --}}
Provider Data
Showing {{ $providers->count() }} of {{ $providers->total() }} records
{{ $providers->currentPage() }} / {{ $providers->lastPage() }}
{{-- TABLE --}}
@forelse ($providers as $p) {{-- ID --}} {{-- PROVIDER --}} {{-- CODE --}} {{-- TYPE --}} {{-- STATUS --}} {{-- ACTION --}} @empty @endforelse
ID Provider Code Type Status Action
#{{ $p->id }}
{{ $p->provider_name }}
{{ $p->provider_name }}
{{ $p->provider_code }} {{ ucfirst((string) $p->provider_type) }} @if ((int) $p->provider_status === 1) Active @else Inactive @endif
Tidak ada data
{{-- PAGINATION --}} @if ($providers->hasPages()) @endif
@endsection @push('scripts') @endpush