@extends('layouts.admin.layout') @section('title') {{ $websiteLang->where('lang_key','pending_order')->first()->custom_text }} @endsection @section('admin-content')
{{ $websiteLang->where('lang_key','pending_order')->first()->custom_text }}
@foreach ($orders as $index => $order) @endforeach
{{ $websiteLang->where('lang_key','serial')->first()->custom_text }} {{ $websiteLang->where('lang_key','agent_s')->first()->custom_text }} {{ $websiteLang->where('lang_key','email')->first()->custom_text }} {{ $websiteLang->where('lang_key','package_s')->first()->custom_text }} {{ $websiteLang->where('lang_key','purchase_date')->first()->custom_text }} {{ $websiteLang->where('lang_key','expired_date')->first()->custom_text }} {{ $websiteLang->where('lang_key','price')->first()->custom_text }} {{ $websiteLang->where('lang_key','status')->first()->custom_text }} {{ $websiteLang->where('lang_key','action')->first()->custom_textt }}
{{ ++$index }} {{ $order->user->name }} {{ $order->user->email }} {{ $order->package->package_name }} {{ $order->purchase_date }} @if ($order->expired_date==null) {{ $websiteLang->where('lang_key','unlimited')->first()->custom_text }} @else {{ $order->expired_date }} @endif {{ $order->currency_icon }}{{ $order->amount_real_currency }} @if ($order->payment_status==1) {{ $websiteLang->where('lang_key','active')->first()->custom_text }} @else {{ $websiteLang->where('lang_key','pending')->first()->custom_text }} @endif
@endsection