@extends('admin.layouts.master-soyuz') @section('title',__('All Hotdeals | ')) @section('body') @include('admin.layouts.topbar',$data)
{{ __('All Hotdeals') }}
@foreach($products as $key => $product) @endforeach
{{ __('ID') }} {{ __('Product Name') }} {{ __('Status') }} {{ __("Action") }}
{{ $key+1 }} {{ isset($product->pro) ? $product->pro->name : $product->simple_product->product_name }} @can('hotdeals.edit')
@csrf
@endcan
@endsection