@extends('layouts.blank') @section('title') {{ __('Subscriptions Report') }} @endsection @section('main_content')
{{ __('Bill To') }} | : {{ $subscriber->business?->companyName ?? '' }} |
{{ __('Mobile') }} | : {{ $subscriber->business?->phoneNumber ?? '' }} |
{{ __('Address') }} | : {{ $subscriber->business?->address ?? '' }} |
{{ __('SL') }} | {{ __('Business Name') }} | {{ __('Package Name') }} | {{ __('Started') }} | {{ __('End') }} | {{ __('Gateway Name') }} |
---|---|---|---|---|---|
1 | {{ $subscriber->business->companyName ?? 'N/A' }} | {{ $subscriber->plan->subscriptionName ?? 'N/A' }} | {{ formatted_date($subscriber->created_at) }} | {{ $subscriber->created_at ? formatted_date($subscriber->created_at->addDays($subscriber->duration)) : '' }} | {{ $subscriber->gateway->name ?? 'N/A' }} |