@extends('layouts.admin')
@section('title')
@lang('Currency')
@endsection
@section('breadcrumb')
@endsection
@section('content')
@foreach ($currencies as $curr)
- @lang('Currency Symbol :')
{{$curr->symbol}}
- @lang('Currency Code :')
{{$curr->code}}
- @lang('Currency Type :')
{{$curr->type == 1 ? 'Fiat':'Crypto'}}
- @lang('Rate 1 USD :')
{{$curr->rate}} {{$curr->code}}
@lang('Edit Currency')
@endforeach
@endsection
@push('style')
@endpush