@extends('layouts.app-admin') @section('content')

Product

Product List Add Product
@foreach($product as $key=>$row) @endforeach
Sr. No. Product Code Img Title Category Brand Price Status Action
{{$key+1}} {{$row->sku}} @if($row->main_img) @else @endif {{$row->title}} {{@$row->GetCategory->title}} {{@$row->GetBrand->title}} £{{$row->price}} @if($row->status=='active') Active @else In-Active @endif
@endsection @section('script') @endsection