@extends('layouts.admin')
@section('body')
@if ($errors->any())
@foreach ($errors->all() as $error)
- {{ $error }}
@endforeach
@endif
@if($categories->count()>0)
| ID |
Category Name |
Product Count |
Edit |
Remove |
@foreach($categories as $category)
| {{$category->id}} |
{{$category->name}} |
{{$category->products->count()}} |
Edit
|
Remove
|
@endforeach
{{$categories->links()}}
@endif
@endsection