@extends('layouts.app-admin') @section('title', 'Shop Currency') @section('content')
{{trans('admin_default.currency')}} {{trans('admin_default.add')}}
@if(count($currencies)) @foreach($currencies as $currency) @endforeach @else @endif
{{trans('admin_default.id')}} {{trans('admin_default.name')}} {{trans('admin_default.symbol')}} Actions
{{$index}} {{$currency->type}} {{$currency->symbol}}
{{trans('admin_default.no_records')}}
@endsection @section('script') @endsection