@extends('layouts.master') @section('title',__('All Manual Payment Transacation')) @section('breadcum') @endsection @section('maincontent')
{{__("All Manual Payment Transacation")}}
@if($manual_payment) @foreach($manual_payment as $key=>$payment) @endforeach @endif
{{__('#')}} {{__('User Name')}} {{__('Package')}} {{__('Amount')}} {{__('Subscription From')}} {{__('Subscription To')}} {{__('Status')}} {{__('Actions')}}
{{$key+1}} {{$payment->user->name}} {{$payment->plan->name}} {{$payment->plan->amount}} {{date('F j, Y g:i:a',strtotime($payment->subscription_from))}} {{date('F j, Y g:i:a',strtotime($payment->subscription_to))}} @if($payment->status == 1) {{__('Active')}} @else {{__('Deactive')}} @endif
@endsection @section('script') @endsection