@extends('layouts.header') @section('title','View Categories') @section('content')
View Products Import Excel
@if ( Session::has('flash_message') ) @endif
@csrf
@if(count($products)>0)
@foreach ($products as $item) @endforeach
Category Name Image Price Slug Status Actions
@foreach ($item->categories as $item2) {{$item2->name}} @endforeach {{$item->name}} {{$item->price}} {{$item->slug}} @if($item->status) Active @else Inactive @endif
{{$products->links()}} @else
No Products Found.
@endif
@endsection @section('modal') @endsection