@extends('backend.layout') @section('content')
{{ __('Counter Informations') }}
@includeIf('backend.partials.languages')
{{ __('Add') }}
@if (count($counters) == 0)

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

@else
@foreach ($counters as $counter) @endforeach
{{ __('Icon') }} {{ __('Amount') }} {{ __('Title') }} {{ __('Actions') }}
{{ $counter->amount }} {{ strlen($counter->title) > 50 ? mb_substr($counter->title, 0, 50, 'UTF-8') . '...' : $counter->title }}
@csrf
@endif
{{-- create modal --}} @include('backend.home-page.counter-section.create') {{-- edit modal --}} @include('backend.home-page.counter-section.edit') @endsection