@extends('frontend.layout.app') @section('title', 'Dashboard') @push('css') @endpush @section('content') @if (session()->has('message'))
{{ session()->get('message') }}
@endif
User profile picture

{{ $user_info->name }}

{{ $user_info->phone }}

Place a Complain

Order History

@foreach ($package_order as $key => $data) @endforeach
Id Package Name Device quantity Total Amount Payment Status Order Status Date
{{ $key + 1 }} @php($package_name = \App\Price_categaroy::find($data->package_id)) {{ $package_name->name }} 1 @php($amount = \App\Payment::find($data->transaction_id)) {{ $amount->amount }} {{ $data->payment_status }} @if ($data->order_status == 0) Pending @elseif($data->order_status == 1) processing @elseif($data->order_status = 2) Complete @endif {{ date('jS F Y - h:i:s A', strtotime($data->created_at)) }}
Id Package Name Device quantity Total Amount Payment Status Order Status Date

Full payment history

@foreach ($payment as $key => $user_data) @endforeach
Id Month Name Payment Amount Due Payment Date Status
{{ $key + 1 }} {{ date('F-Y', strtotime($user_data->month_name)) }} @if ($user_data->payment_this_date == null) --- @else {{ $user_data->payment_this_date }} @endif {{ $user_data->total_due }} {{ date('jS F Y - h:i:s A', strtotime($user_data->created_at)) }} @if ($user_data->payment_status == 0) Due @else Paid @endif
Id Month Name Payment Amount Due Invoice Date Status
@csrf
@if ($errors->has('par_add')) {{ $errors->first('par_add') }} @endif
{{-- +88 --}}
{{ csrf_field() }}
@if ($errors->has('current-password')) {{ $errors->first('current-password') }} @endif
@if ($errors->has('new-password')) {{ $errors->first('new-password') }} @endif
@endsection @push('js') @endpush