@extends('layouts.admin') @section('title', tr('provider_payments')) @section('content-header',tr('provider_payments')) @section('breadcrumb')
| {{ 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 |