@extends('layouts.user', ['header' => true, 'nav' => true, 'demo' => true, 'settings' => $settings]) @section('content')
@foreach ($business_cards as $business_card) @php $time = strtotime($business_card->created_at); $newformat = date('Y-m-d h:i A',$time); @endphp @endforeach
{{ __('S.No') }} {{ __('Created At') }} {{ __('Business Name') }} {{ __('Type') }} {{ __('Validity Upto') }} {{ __('Status') }} {{ __('Actions') }}
{{ $loop->iteration }}{{ $newformat }} {{ $business_card->title }} {{ $business_card->card_type == 'vcard' ? __('vCard') : __('WhatsApp Store') }} {{ date('d/M/Y', strtotime($business_card->plan_validity)) }} @if ($business_card->card_status == 'inactive') {{ __('Inactive') }} @else {{ __('Active') }} @endif
@include('user.includes.footer') @include('user.cards.success')
@endsection @section('scripts') @endsection