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

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

@else
@foreach ($charges as $charge) @endforeach
{{ __('Days') }} {{ __('Price') }} {{ __('Actions') }}
{{ $charge->days }} {{ symbolPrice($charge->price) }}
@csrf
@endif
{{-- create modal --}} @include('admin.featured-listing.charge.create') {{-- edit modal --}} @include('admin.featured-listing.charge.edit') @endsection