@extends('Template::layouts.master') @section('content')

{{ __($pageTitle) }}

@forelse($contents as $content) @empty @endforelse
@lang('Content Type') @lang('Total Credit') @lang('Created At') @lang('Expired At') @lang('Action')
{{ __($content->title ?? 'N/A') }} {{ getAmount($content->credit) }} {{ showDateTime($content->created_at) }} {{ showDateTime($content->expired_date) }}
{{ __($emptyMessage) }}
@if ($contents->hasPages())
{{ paginateLinks($contents) }}
@endif
@endsection