@extends('bootstrap.layouts.app') @section('content')
@php $url = explode('/', url()->current()); $all = ''; $active = ''; $paused = ''; $expired = ''; $canceled = ''; $completed = ''; if (isset($url[4])) { if ($url[4] == 'active') { $active = 'active'; } if ($url[4] == 'paused') { $paused = 'active'; } if ($url[4] == 'expired') { $expired = 'active'; } if ($url[4] == 'canceled') { $canceled = 'active'; } if ($url[4] == 'completed') { $completed = '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 (count($data) != 0)
@foreach ($data as $item) @endforeach
ID URL Quantity Post Delay Service Name Status Created Date Updated Date Expiry Date
{{ $item->order_id }} {{ $item->order_url }} {{ $item->subscriptions_min . '-' . $item->subscriptions_max }} / {{ round($item->subscriptions_delay / 60, 4) }} {{ $item->service_name }} {{ $item->subscriptions_status }} {{ date('d.m.Y H:i:s', strtotime($item->order_create)) }} {{ date('d.m.Y H:i:s', strtotime($item->last_check)) }} {{ date('d.m.Y', strtotime($item->subscriptions_expiry)) }}
@endif
@if (isset($pageContent) && !is_null($pageContent) && ($pageContent->content_place == 'both' || $pageContent->content_place == 'bottom'))
{!! $pageContent->page_content_bottom !!}
@endif
@endsection @section('script') @endsection