@extends('administrator.layout') @section('admintitle', 'Currency') @section('content')
@if (session()->has('success')) @endif @if (session()->has('error')) @endif
{{ __('text.currency') }} {{ __('text.table') }}
@forelse($data as $index => $d) @empty @endforelse
Sno. {{ __('text.name') }} {{ __('text.code') }} {{ __('text.symbol_left') }} {{ __('text.symbol_right') }} {{ __('text.action') }}
{{ $index + 1 }} {{ $d->name }} {{ $d->code }} {{ $d->symbol_left }} {{ $d->symbol_right }}
{{ __('text.no_records_found') }}
{{ $data->links() }}
@endsection