@extends('backend.layouts.app') @section('content')

{{ translate('Account Type') }}

{{ translate('Account Type List') }}
{{-- table --}}
@if($accountType->isNotEmpty()) @php $i = ($accountType->currentPage() - 1) * $accountType->perPage() @endphp @foreach($accountType as $key => $value) @endforeach @else @endif
{{ translate('Sr. No.') }} {{ translate('Account Type Name') }} {{ translate('Description') }} {{ translate('Permissions') }} {{ translate('Actions') }}
{{ $i + $key + 1 }} {{ $value->name }}
{{ $value->description }}

{{ translate('No Account Types Available') }}

Account Type(s) : {{ $accountType->total() }}
{{ $accountType->appends(request()->input())->links() }}
@include('modals.delete_modal') {{-- --}} @endsection @section('script') @endsection