@extends('master_layout.app') @section('content')

Order List

@if (isset($modPer) && $modPer->view == 1) Export Excel @endif
@foreach ($subscriber_list as $sl) @php $plan_name = []; $plan_name = explode(',', $sl->description); @endphp @if ($sl->receipt_url != '') @php $status = 'Online'; @endphp @else @php $status = 'Offline'; @endphp @endif @endforeach
Order ID Customer Name Date & Time Plan Name Status Total Amount Payment Provider
#{{ $sl->id }} {{ $sl->name }} {{ date('M-d-Y', strtotime($sl->created_at)) }} {{ $plan_name[0] }} {{ $st }} ${{ $sl->amount }} {{ $status }}
@endsection