@extends('dashboard.admin.layouts.master') @section('content')

{{ $title }}

{{ $title }}

@forelse ($products as $key => $product) @empty @endforelse
# Name Image Category Quantity Price Type Status Action
{{ $key + 1 }} {{ $product->name }} {{ $product->name }} {{ $product->productCategory->name }} {{ $product->quantity }} {{ formatAmount($product->price, $settings) }} @if ($product->product_type == 'new_arrival') New Arrival @elseif($product->product_type == 'featured') Featured @elseif($product->product_type == 'top_product') Top Product @elseif($product->product_type == 'best_product') Best Product @endif @if ($product->status == 1) @else @endif
@push('scripts') @endpush @endsection