@extends('main') @section('title', 'Exchange Rates | Page') @section('content')
entries
@foreach ($rates as $rate) {{-- --}} {{-- --}} @endforeach
Currency Pair Buy Rate Sell Rate Expired Date Minimum Order Qty Created On Created Who Action
{{ $rate->currency_pair }} {{ number_format($rate->buy_rate, 2, ',', '.') }} {{ number_format($rate->sell_rate, 2, ',', '.') }} {{ $rate->expired_date }} {{ number_format($rate->minimum_order, 2, ',', '.') }} {{ $rate->created_at }} {{ $rate->creator->name }}{{ $rate->created_at }}Active {{-- img --}} Delete
Showing {{ $rates->firstItem() }} to {{ $rates->lastItem() }} of {{ $totalRates }} entries
@if (session('success')) @push('scripts') @endpush @endif @endsection