@extends('main') @section('css') @endsection @section('content') Add {{$vars['name']}} @csrf Year: @foreach(\App\Models\Year::get() as $item) format('Y') == $item->value ? 'selected' : ''}}> {{$item->value }} @endforeach Month: @foreach(\App\Models\Month::get() as $item) format('m') == $item->numeral ? 'selected' : ''}}> {{$item->value}} - {{$item->description}} @endforeach Currency (icon): @foreach(\App\Models\Currency::get() as $item) {{$item->name}} @endforeach Amount Rate: {{$vars['name']}} List Name Year Month Rate (To TSH) Actions @foreach($vars['data'] as $row) @include('currency_rates._tr') @endforeach @endsection @section('js') @endsection