@extends("admin.layouts.sellermastersoyuz") @section('title',__('All Gift')) @section('body') @component('seller.components.breadcumb',['secondactive' => 'active']) @slot('heading') {{ __('All Gift') }} @endslot @slot('menu1') {{ __('Gift') }} @endslot @slot('button')
{{__("Add Gift")}}
@endslot @endcomponent
{{ __('All Gift') }}
@foreach($gifts as $key=> $gift) @endforeach
{{ __('S No.') }} {{ __('Title') }} {{ __('Code') }} {{ __('Apply Price') }} {{ __('Max Usage') }} {{ __('Expiry Date') }} {{ __('Status') }} {{ __('Action') }}
{{ $key+1 }} {{ $gift->title }} {{ $gift->gift_code }} {{ $gift->apply_price }} {{ $gift->count }} {{ $gift->end_date }}
{{ csrf_field() }}
@endsection