@extends('admin.layout') @section('content')
{{ __('Charges') }}
{{ __('Add') }}
@if (count($charges) == 0)

{{ __('NO CATEGORY FOUND') . '!' }}

@else
@foreach ($charges as $charge) @endforeach
@php $currencyText = $settings->base_currency_text; @endphp {{ __('Amount') }} ({{ $currencyText }}) {{ __('Day') }} {{ __('Actions') }}
{{ symbolPrice($charge->amount) }} {{ $charge->day }} amount }} data-day="{{ $charge->day }}">
@csrf
@endif
{{-- create modal --}} @include('admin.featured-service.charge.create') {{-- edit modal --}} @include('admin.featured-service.charge.edit') @endsection