@extends('admin.layout') @section('content')

{{ __('Counter') }}

{{ __('Counter List') }}

{{ __('Add') }}
@foreach ($counters as $id=>$counter) @endforeach
# {{ __('Icon') }} {{ __('Name') }} {{ __('Value') }} {{ __('Order') }} {{ __('Status') }} {{ __('Action') }}
{{ ++$id }} {{ $counter->title }} {{ $counter->number }} {{ $counter->serial_number }} @if($counter->status == 1) {{ __('Publish') }} @else {{ __('Unpublish') }} @endif {{ __('Edit') }}
@csrf
@endsection