@extends('layouts.default_module')
@section('module_name')
Package
@stop
@section('add_btn')
{!! Form::open(['method' => 'get', 'route' => ['package.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')
| Name |
Allowed Courses |
Edit |
Delete |
@foreach($package as $b)
{!! ucwords($b->name ) !!} |
{!!ucwords($b->allowed_courses) !!} |
{!! link_to_action('Admin\PackageController@edit',
'Edit', array($b->id), array('class' => 'badge bg-info')) !!}
|
{!! Form::open(['method' => 'POST', 'route' => ['package.delete', $b->id]]) !!}
{!! $b->deleted_at?'Activate':'Delete' !!}
{!! Form::close() !!}
|
@endforeach
@section('pagination')
{!! Form::open(['method' => 'get', 'route' => ['dashboard']]) !!}
{!! Form::submit('Cancel', ['class' => 'btn btn-default btn-block btn-lg btn-parsley']) !!}
{!! Form::close() !!}
@endsection
@stop