{{ __('Promotion') }}
{{ Form::text('name', $promotion->name, array('placeholder'=>__('Name'), 'class'=>'form-control', 'id'=>'name', 'required')) }}
{{ Form::select('type', $promotion->promotionType, $promotion->type, array('data-live-search'=>'false', 'class'=>'selectpicker', 'id'=>'type') ) }}
{{ Form::textarea('description', $promotion->description , array('placeholder'=>__('Interne Notiz'), 'class'=>'form-control', 'rows'=>2, 'id'=>'description')) }}
{{ Form::text('max_bugdet', $promotion->getFormattedMaxBugdet(), array('placeholder'=>__('Budget in Euro / Brutto'), 'class'=>'form-control', 'id'=>'max_bugdet')) }}
{{ Form::text('max_items', $promotion->max_items, array('placeholder'=>__('Einheiten in Stück'), 'class'=>'form-control', 'id'=>'max_items')) }}

Ist das Budget oder Einheiten erreicht, wird auf der Microseite keine Promotion mehr angezeigt.
{!! Form::text('from', $promotion->from, ['class'=>'form-control datepicker-base']) !!}
{!! Form::text('to', $promotion->to, ['class'=>'form-control datepicker-base']) !!}

Ist das ab oder bis Datum gesetzt wird die Promotion nur innerhalb dieses Zeitraumns angezeigt.
{{ __('Produkte') }}
@if($promotion->id > 0)
@foreach($promotion->promotion_admin_products as $promotion_admin_products) @endforeach
  {{__('Bild')}} {{__('Produkt')}} {{__('Versandkosten') }} {{__('Provision') }} {{__('Neuer Preis')}} {{__('Preis B.') }} {{__('max. P.') }} {{__('verkauft P.') }} {{__('active') }}
@if(count($promotion_admin_products->product->images)) @endif {{ $promotion_admin_products->product->name }} {!! get_active_badge($promotion_admin_products->calcu_commission) !!} {!! get_active_badge($promotion_admin_products->shipping) !!} {!! get_active_badge($promotion_admin_products->own_price) !!} {{ $promotion_admin_products->getFormattedRealPrice() }} € {{ $promotion_admin_products->max_items }} {{ $promotion_admin_products->used_items }} {!! get_active_badge($promotion_admin_products->active) !!}
@endif