@extends('admin.layouts.app') @section('panel')
Success TopUp Regular Packs
@csrf
@forelse($packs as $pack) @empty @endforelse
Package Operator Type Price Validity Updated
{{ $pack->title }}
ID: {{ $pack->remote_id }}
{{ $pack->operator ?: '-' }}
{{ $pack->operator_name ?: '-' }}
{{ ucfirst($pack->recharge_type) }} ৳{{ number_format($pack->api_price, 2) }} {{ $pack->validity ?: '-' }} {{ $pack->updated_at ? $pack->updated_at->format('d M Y h:i A') : '-' }}
No regular pack found. Sync from API first.
{{ $packs->links() }}
@endsection