@extends('layouts.contentLayoutMaster') {{-- page title --}} @section('title','User Creditcard List') {{-- vendor styles --}} @section('vendor-styles') @endsection {{-- page styles --}} @section('page-styles') @endsection @section('content')

Subscriber Management

@csrf
@for ($i = 0; $i < count($cards); $i++) @endfor
No Credit Card Number Card Expire Card Type First Name Last Name Address State City Country Zip Code UPDATED AT
{{$cards[$i]->id}} @php echo "xxxx-xxxx-xxxx-" . substr($cards[$i]->card_number, -4) @endphp {{$cards[$i]->card_expire}} {{$cards[$i]->card_name}} {{$cards[$i]->first_name}} {{$cards[$i]->last_name}} {{$cards[$i]->address_line_1}}
{{$cards[$i]->address_line_2}}
{{$cards[$i]->state}} {{$cards[$i]->city}} {{$cards[$i]->country_name}} {{$cards[$i]->zip_code}} {{$cards[$i]->updated_at}}
@endsection {{-- vendor scripts --}} @section('vendor-scripts') @endsection {{-- page scripts --}} @section('page-scripts') @endsection @section('scripts') @endsection