@extends('backEnd.layouts.master') @section('title','Product Manage') @section('content')

Product Manage

@foreach($data as $key=>$value) @endforeach
SL Action Name Category Image Price Stock Deal & Feature Status
{{$loop->iteration}}
@if($value->status == 1)
@csrf
@else
@csrf
@endif
@csrf
{{$value->name}} {{$value->category?$value->category->name:''}} {{$value->new_price}} {{$value->stock}}

Hot Deals : {{$value->topsale==1?'Yes':'No'}}

Top Feature : {{$value->feature_product==1?'Yes':'No'}}

@if($value->status==1)Active @else Inactive @endif
{{$data->links('pagination::bootstrap-4')}}
@endsection