@php
$url = explode("/",url()->current());
$all = '';
$cronpending = '';
$pending = '';
$processing = '';
$inprogress = '';
$completed = '';
$partial = '';
$canceled = '';
$fail = '';
$api = '';
if(isset($url[4])){
if($url[4] == 'cronpending'){
$cronpending = 'active';
}
if($url[4] == 'pending'){
$pending = 'active';
}
if($url[4] == 'processing'){
$processing = 'active';
}
if($url[4] == 'inprogress'){
$inprogress = 'active';
}
if($url[4] == 'completed'){
$completed = 'active';
}
if($url[4] == 'partial'){
$partial = 'active';
}
if($url[4] == 'canceled'){
$canceled = 'active';
}
if($url[4] == 'fail'){
$fail = 'active';
}
if($url[4] == 'api'){
$api = 'active';
}
}else{
$all = 'active';
}
@endphp
{{--
--}}
@if (Session::has('success'))
@if (Session::get('success'))
--}}
@if (isset($pageContent) &&
!is_null($pageContent) &&
($pageContent->content_place == 'both' || $pageContent->content_place == 'bottom'))
{{ Session::get('success') }}
@endif
@endif
@if (Session::has('error'))
@if (Session::get('error'))
{{ Session::get('error') }}
@endif
@endif
@if (isset($pageContent) &&
!is_null($pageContent) &&
($pageContent->content_place == 'both' || $pageContent->content_place == 'top'))
{!! $pageContent->page_content_top !!}
@endif
{{-- ID | Date | Link | Charge | Start Count | Quantity | Service | Status | Remains | Live Count | Refill | Cancel |
---|---|---|---|---|---|---|---|---|---|---|---|
{{ $item['order_id'] }} | {{ $item['order_create'] }} | {{ $item['order_url'] }} | {{ $currency_detail->currency_symbol . '' . getCurrentCurrencyExchnage($item->order_charge, $currency_detail->currency_value) }} | {{ $item['order_start'] }} | {{ $item['order_quantity'] }} | {{ $item['service_name'] }} | {{ $item['order_status'] }} | {{ $item['order_remains'] }} |
{!! $pageContent->page_content_bottom !!}
@endif