@extends('layouts.default_module')
@section('module_name')
{!! ucwords($product->name)!!} Product Promotion
@stop
@section('add_btn')
{!! Form::open(['method' => 'get', 'url' => ['admin/promotion/create/'.$product_id], 'files'=>true]) !!}
{!! Form::submit('Add', ['class' => 'btn btn-success pull-right']) !!}
{!! Form::close() !!}
@stop
@section('table-properties')
width="400px" style="table-layout:fixed;"
@endsection
@section('table')
| Name |
Description |
Applicable Min Quantity |
Discount Percent |
Extra Product Quantity |
Edit |
Delete |
@foreach($promotion as $p)
{!! ucwords($p->name) !!} |
{!! ucwords($p->description) !!} |
{!! ucwords($p->applicable_min_quantity) !!} |
{!! ucwords($p->discount_percent) !!} |
{!! ucwords($p->extra_product_quantity) !!} |
{!! link_to_action('Admin\PromotionController@edit',
'Edit', array($p->id), array('class' => 'badge bg-info')) !!}
|
{!! Form::open(['method' => 'POST', 'route' => ['promotion.delete', $p->id]]) !!}
{!! $p->deleted_at?'Activate':'Delete' !!}
{!! Form::close() !!}
|
@endforeach
@section('pagination')
{!! Form::open(['method' => 'get', 'route' => ['product.index']]) !!}
{!! Form::submit('Cancel', ['class' => 'btn btn-default btn-block btn-lg btn-parsley']) !!}
{!! Form::close() !!}
@endsection
@stop