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

All Currencies

Add New
@if (count($currencies)) @foreach ($currencies as $index => $item) @endforeach @else @endif
# Name Code Symbol Rate Default Status ACtion
{{ $index + 1 }} {{ $item->name ?? '' }} {{ $item->code ?? '' }} {{ $item->symbol ?? '' }} {{ $item->rate ?? '' }} @if ($item->is_default == 1) Yes @else No @endif @if ($item->status == 1) Active @else InActive @endif
Data Not Availble
{{-- --}}
@endsection