@extends('layouts.default_module') @section('module_name') Category @stop @section('add_btn') {!! Form::open(['method' => 'get', 'route' => ['promo_code.create'], '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') {{-- {!! Form::open(['method' => 'post', 'route' => ['doctor.search'], 'files'=>true]) !!} @include('admin.doctor.partial.searchfilters') {!!Form::close() !!} --}} {{-- @stop --}} Name Promo code Discount Percent Edit Delete @foreach($promo_code as $pc) {!! ucwords($pc->name) !!} {!! ucwords($pc->promo_code) !!} {!! ucwords($pc->discount_percent) !!} {!! link_to_action('Admin\Promo_codeController@edit', 'Edit', array($pc->id), array('class' => 'badge bg-info')) !!} {!! Form::open(['method' => 'POST', 'route' => ['promo_code.delete', $pc->id]]) !!} {!! $pc->deleted_at?'Activate':'Delete' !!} {!! Form::close() !!} @endforeach @section('pagination') {!! $promo_code->render() !!}
{!! Form::open(['method' => 'get', 'route' => ['dashboard']]) !!} {!! Form::submit('Cancel', ['class' => 'btn btn-default btn-block btn-lg btn-parsley']) !!} {!! Form::close() !!}
@endsection @stop