@extends('layouts.index') @section('page_title') Counters @endsection @section('website_active') nav-item active @endsection @section('pg_name') Counters Section @endsection @section('content') @if (count($errors) > 0)
@foreach ($errors->all() as $error)
{{$error}}
@endforeach
@endif @if (Session::get('message'))
{{ Session::get('message') }}
@endif @foreach ($counters as $i => $counter)
{{ $counter->count_name }}
{{ $counter->num_count }}
@endforeach @endsection