@extends('layouts.default_module') @section('module_name') {!! ucwords($show)!!} @stop @section('add_btn')
Notice: Undefined variable: show in /home/demohatinco/public_html/maternity_care_backend/resources/views/admin/location/index.blade.php on line 8
{!! Form::open(['method' => 'get', 'route' => [$route], '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 --}} Location ID Name {{-- Description --}} @if(!$region) Edit Delete @endif @foreach($location as $lp) {!! $lp->location_id !!} {!! ucwords($lp->name) !!} {{-- {!! ucwords($lp->description) !!} --}} @if(!$region) {!! link_to_action('Admin\LocationController@edit', 'Edit', array($lp->id), array('class' => 'badge bg-info')) !!} {!! Form::open(['method' => 'POST', 'route' => ['location.delete', $lp->id]]) !!} {!! $lp->deleted_at?'Activate':'Delete' !!} {!! Form::close() !!} @endif @endforeach @section('pagination') {!! $location->render() !!}
{!! Form::open(['method' => 'get', 'route' => ['dashboard']]) !!} {!! Form::submit('Cancel', ['class' => 'btn btn-default btn-block btn-lg btn-parsley']) !!} {!! Form::close() !!}
@endsection @stop