@extends('admin.master') @section('title',@trans('Currencies')) @section('content')

@trans('Currencies')

@include('admin.pages.currency._model_search')
@csrf
@forelse ($currency as $item) @empty @endforelse
# @trans('Title') @trans('Code') @trans('Exchange Rate') @trans('Created By') @trans('Status') @trans('Settings')
{{ $loop->index + 1 }} {{ $item->trans->where('locale', $current_lang)->first()->title }} {{ @$item->code }} {{ @$item->currency_difference ? $item->currency_difference . ' SAR' : '' }} {{ @$item->create_by->name }} @if ($item->status == 1) @trans('Active') @else @trans('Unactive') @endif @include('admin.pages.currency._model_delete', ['id' => $item->id])
@trans('No currency found')
@endsection