@extends('layouts.main') @section('content')
@foreach($currencies as $index => $currency) @endforeach
# {{__('message.name')}} {{__('message.currency code')}} {{__('message.flage')}} {{__('message.sample money')}} {{__('message.decimal precision')}} {{__('message.is main currency')}} {{__('message.created by')}} {{__('message.action')}}
{{$index+1}} {{$currency->name}} {{$currency->currency_code}} @if($currency->flage) @endif @if($currency->sample_money) @endif {{$currency->decimal_precision}} {{$currency->is_main_currency?"Yes":"No"}} {{$currency->user->name??''}}
{{ csrf_field() }}
{{ $currencies->appends($_GET)->links() }} @if($currencies->hasPages()) @endif
@endsection @section('meta') {{__('message.currency')}} @endsection