@extends('admin.master') @section('title',@trans('Currencies')) @section('content')
| # | @trans('Title') | @trans('Code') | @trans('Exchange Rate') | @trans('Created By') | @trans('Status') | @trans('Settings') | @forelse ($currency as $item)|
|---|---|---|---|---|---|---|---|
| {{ $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 |
|
|
| @trans('No currency found') | |||||||