@extends('bootstrap.layouts.app') @section('content')
@php $url = explode("/",url()->current()); $all = ''; $cronpending = ''; $pending = ''; $processing = ''; $inprogress = ''; $completed = ''; $partial = ''; $canceled = ''; $fail = ''; $rejected = ''; if(isset($url[4])){ 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] == 'canceled'){ $canceled = 'active'; } if($url[4] == 'fail'){ $fail = 'active'; } if($url[4] == 'rejected'){ $rejected = 'active'; } }else{ $all = 'active'; } @endphp
@if (isset($pageContent) && !is_null($pageContent) && ($pageContent->content_place == 'both' || $pageContent->content_place == 'top'))
{!! $pageContent->page_content_top !!}
@endif
@if (Session::has('success')) @if (Session::get('success'))
{{ 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 @if (count($data) != 0)
@foreach ($data as $item) @endforeach
ID Order Id Start Count Quantity Remains Link Service Status Created
{{$item->refill_id}} {{$item->refill_order_id}} {{$item->order_start}} {{$item->order_quantity}} {{$item->order_remains}} {{$item->order_url}} {{$item->service_name}} {{$item->refill_status}} {{$item->refill_created}}
@endif
@if (isset($pageContent) && !is_null($pageContent) && ($pageContent->content_place == 'both' || $pageContent->content_place == 'bottom'))
{!! $pageContent->page_content_bottom !!}
@endif
@endsection @section('script') @endsection