@extends('workorder/layouts/default') @section('title') Workorders @parent @stop {{-- Page content --}} @section('content')

Workorders

@include('flash::message')

Workorders List

{!! Form::open(['route' => 'workorder.workorders.search']) !!}
                       {!! Form::close() !!}

@if(isset($workorders)) {!! Form::open(['route' => 'workorder.workorders.register']) !!} @include('workorder.workorders.table') {!! Form::close() !!} @endif
@stop