@extends('panel::layouts.app') @section('body-class', '') @section('title', __('panel/menu.currencies')) @push('header') @endpush @section('page-title-right') @endsection @section('content')
@if ($currencies->count())
@foreach($currencies as $item) @endforeach
{{ __('panel/common.id') }} {{ __('panel/currency.name') }} {{ __('panel/currency.code') }} {{ __('panel/currency.symbol_left') }} {{ __('panel/currency.symbol_right') }} {{ __('panel/currency.decimal_place') }} {{ __('panel/currency.value') }} {{ __('panel/common.active') }} {{ __('panel/common.actions') }}
{{ $item->id }} {{ $item->name }} {{ $item->code }} {{ $item->symbol_left }} {{ $item->symbol_right }} {{ $item->decimal_place }} {{ $item->value }} @include('panel::shared.list_switch', ['value' => $item->active, 'url' => panel_route('currencies.active', $item->id)])
{{ __('panel/common.edit')}}
@csrf @method('DELETE') {{ __('panel/common.delete')}}
{{ $currencies->withQueryString()->links('panel::vendor/pagination/bootstrap-4') }} @else @endif
@endsection @push('footer') @endpush