@extends('admin.layouts.master-soyuz') @section('title',__('All Special Offers')) @section('body') @component('admin.component.breadcumb',['thirdactive' => 'active']) @slot('heading') {{ __('All Special Offers') }} @endslot @slot('menu1') {{ __("Special Offers") }} @endslot​ ​@slot('button')
{{ __('Add Special Offer') }}
@endslot @endcomponent
@if ($errors->any()) @endif
{{ __('Special Offers') }}
@foreach($products as $key => $product) @endforeach
{{ __('Id') }} {{ __('Product Name') }} {{ __('Status') }} {{ __('Action') }}
{{++$key}} {{ isset($product->pro) ? $product->pro->name : $product->simple_product->product_name }}
{{csrf_field()}}
@endsection