@extends('layout.app') @section('title', __('subscription_reports')) @section('content')
@foreach ($shopSubscriptions as $shopSubscription) @endforeach
{{ __('sl') }} {{ __('shop_name') }} {{ __('subscription_title') }} {{ __('is_current') }} {{ __('payment_gateway') }} {{ __('payment_status') }} {{ __('expired_at') }}
{{ $loop->iteration }} {{ $shopSubscription->shop->name }} {{ $shopSubscription->subscription->title }} {{ $shopSubscription->is_current }} {{ $shopSubscription->payment_gateway }} {{ $shopSubscription->payment_status }} {{ dateFormat($shopSubscription->expired_at) }}
@endsection