@extends('backend.layouts.master') @section('title') Statistics @endsection @section('main-content') @include('backend.layouts.notification')
Statistics
@if(count($statistics)>0) @foreach($statistics as $statistic) @endforeach
ID Category Quantity Slug Status Action
{{$statistic->id}} {{$statistic->title}} {{$statistic->price}} {{$statistic->slug}} @if($statistic->status=='active') {{$statistic->status}} @else {{$statistic->status}} @endif
@else
No statistics found!!! Please add statistic
@endif
@endsection