@extends('backends.layouts.master_layout') @section('title',"Products") @section('page_heading','Products') @section('content')
@include('backends.includes.notification')
@if($search) Clear Search @endif
@foreach($products as $k => $product) @endforeach
SL Title Weight Description Cost Price Sales Price Brand Image Is Active Order By Action
{{$k+1}} {{$product->title}} {{$product->weight}} {{$product->sub_title}} {{ $product->cost_price }} {{ $product->sales_price }} {{ $product->brand_name }} @if($product->is_active == 0) Disabled @else Enabled @endif {{$product->sort_by}}
{{$products->links()}}
@include('.backends.includes.delete-modal') @endsection