@extends('pdf') @section('content-area')

@lang('All payment methods list')

@foreach ($paymentMethods as $key => $paymentMethod) @endforeach
@lang('#') @lang('Name') @lang('Short Code') @lang('Status') @lang('Created At')
{{ ++$key }} {{ $paymentMethod['name'] }} {{ $paymentMethod['code'] }} @if ($paymentMethod['status']) @lang('Active') @else @lang('Inactive') @endif {{ \Carbon\Carbon::parse($paymentMethod['created_at'])->format('d-M-Y') }}
@endsection