@extends('layouts.admin') @section('title', tr('provider_subscriptions')) @section('content-header', tr('provider_subscriptions')) @section('breadcrumb')
  • {{ tr('home') }}
  • {{tr('providers')}}
  • {{tr('view_provider')}}
  • {{ tr('provider_subscriptions') }}
  • @endsection @section('after-styles') @endsection @section('content')
    @include('notification.notify')
    @if(count($payments) > 0) @foreach($payments as $i => $payment_details)
    {{ tr('id') }} {{ tr('name') }} {{ tr('provider_subscription') }} {{ tr('payment_id') }} {{ tr('amount') }} {{ tr('expiry_date') }} {{ tr('reason') }} {{ tr('action') }}
    {{ $i+1 }} {{ ($payment_details->provider) ? $payment_details->provider->name : '' }} @if($payment_details->prividersubscription) {{ $payment_details->prividersubscription ? $payment_details->prividerSubscription->title : '' }} @endif {{ $payment_details->payment_id }} {{ Setting::get('currency') }} {{ $payment_details->amount }} {{ date('d M Y',strtotime($payment_details->expiry_date)) }} {{ $payment_details->cancelled_reason }}