@extends('layouts.admin') @section('title', tr('provider_payments')) @section('content-header',tr('provider_payments')) @section('breadcrumb')
  • {{ tr('provider_payments') }}
  • @endsection @section('content') @include('notification.notify')

    {{ tr('provider_payments') }}

    @if(count($provider_subscription_payments) > 0) @foreach($provider_subscription_payments as $i => $provider_subscription_payment_details) @endforeach @endif
    {{ tr('id') }} {{ tr('provider') }} {{ tr('subscription') }} {{ tr('payment_id') }} {{ tr('total') }} {{ tr('date') }} {{ tr('status') }}
    {{ $i+1 }} @if($provider_subscription_payment_details->provider) {{ $provider_subscription_payment_details->provider->name }} @else - @endif {{ $provider_subscription_payment_details->prividerSubscription ? $provider_subscription_payment_details->prividerSubscription->title : '-' }} {{ $provider_subscription_payment_details->payment_id }} {{ Setting::get('currency') }} {{ $provider_subscription_payment_details->amount }} @if($provider_subscription_payment_details->created_at) {{ $provider_subscription_payment_details->created_at->diffForHumans() }} @endif @if($provider_subscription_payment_details->status) {{ tr('paid') }} @else {{ tr('not_paid') }} @endif
    @endsection