@extends('admin.layouts.app') @section('page_content')
Add Feature Product
@csrf
Feature Products List
@foreach($feature_products as $key => $product) @endforeach
S.no. Image Category Product Model Action
{{$key+1}} @if(file_exists($product->thumb_image)) @endif {{$product->product_category->name}} {{$product->model}} @if($product->is_featured == 1) @php($feature_url = route('admin.products.feature_project.status', ['id'=>$product->category_id, 'status'=> 0, 'product_id'=> $product->id])) Remove Featured @endif
@endsection