@extends('admin.layouts.master-soyuz') @section('title',__('All Hotdeals | ')) @section('body') @component('admin.component.breadcumb',['secondaryactive' => 'active']) @slot('heading') {{ __('All Hotdeals') }} @endslot @slot('menu1') {{ __('Hotdeals') }} @endslot @slot('button')
{{__("Add Hotdeals")}}
@endslot @endcomponent
{{ __('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