@extends('layouts.customer') @section('content')

User Payment Cards

Add Card
@if ($errors->any())
Whoops! There were some problems.

    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif @if ($message = Session::get('success'))

{{ $message }}

@endif @if ($message = Session::get('error'))

{{ $message }}

@endif
@if($cards) @php $i = 0; @endphp @foreach($cards as $card) @endforeach @else

No records found!

@endif
Sr No Card Number Exp month Exp year Is Default Action
{{ ++$i }} {{ $card['details']['exp_month'] }} {{ $card['details']['exp_year'] }} {{ $card['is_default'] ? 'Default' : 'N/A' }}
@endsection