@extends('crm.layouts.app') @section('styles') @endsection @section('content')
@include('crm.layouts.breadcrumb')

{{__('Currencies')}}

{{__('New Currency')}}
@if($errors) @foreach ($errors->all() as $error)
{{ $error }}
@endforeach @endif @foreach (@$currencies as $currency) @endforeach
{{__('Currency')}} {{__('Symbol')}} {{__('Actions')}}
{{@$currency->name}} @if (@$currency->is_base_currency == 'yes') ({{__('Base Currency')}}) @endif {{@$currency->symbol}} @can('update-office', User::class)
@csrf @method('PUT') @if ($currency->is_base_currency == 'yes') @else @endif
{{-- SECTION Edit Modal Starts Here --}} {{-- !SECTION Edit Modal Ends here --}} @endcan @can('delete-office', User::class)
@method('DELETE') @csrf
@endcan
{{-- SECTION Add Currency modal Starts Here --}} {{-- !SECTION ADD Currency modal ends here --}} @endsection @section('scripts') @include('crm.office.currency_js') @endsection