@extends('admin.layout') @section('content')
@if (count($pos) > 0)
@foreach ($pos as $key => $po) @endforeach
Order Number Name Email Package Amount Gateway Order Status Payment Status Date
#{{$po->order_number}} {{$po->name}} {{$po->email}} {{$po->package_title}} {{$bex->base_currency_symbol_position == 'left' ? $bex->base_currency_symbol : ''}}{{$po->package_price}}{{$bex->base_currency_symbol_position == 'right' ? $bex->base_currency_symbol : ''}} {{ucfirst($po->method)}} @if ($po->status == 0) Pending @elseif($po->status == 1) Processing @elseif($po->status == 2) Completed @elseif($po->status == 3) Rejected @endif @if ($po->payment_status == 0) Pending @elseif($po->payment_status == 1) Completed @endif {{$po->created_at}}
@endif
@if (!empty($pos)) @endif
@endsection