@extends('layout.app') @section('title') Exchange Rates @endsection @section('pagetitle') Exchange Rates @endsection @section('content')
@can('create fx') Add Rates @endcan
@include('includes.success')
@foreach ($rates as $item) @endforeach
Sn Currency Rates Symbol
{{$i+1}} {{ucwords($item->currency)}} {{number_format($item->currency_rate,2)}} {{$item->currency_symbol}} @can('edit fx') @endcan
@endsection @section('scripts') @endsection