@extends('layouts.admin') @section('body') @if ($errors->any())
@endif

Create New Category

{{csrf_field()}}
@if($categories->count()>0)
@foreach($categories as $category) @endforeach
ID Category Name Product Count Edit Remove
{{$category->id}} {{$category->name}} {{$category->products->count()}} Edit Remove
{{$categories->links()}}
@endif @endsection