@extends('layouts.content') @section('content')
@if(!count($officials))

Settings

No data found.

@else @foreach($officials as $official) @endforeach
ID Group Name Group Head Role Signature Status
{{ $official->to_id }} {{ $official->group->g_name }} {{ $official->user->u_fname }} {{ format_middle_name($official->user->u_mname) }} {{ $official->user->u_lname }} {{ $official->role->r_name }} @if($official->to_approval == 0) Recommending Approval @else Approval @endif @if($official->oic == 1) Officer In Charge @else Permanent @endif
@endif
Travel Order Settings
{!! Form::model($setting, ['url' => 'settings/save', 'autocomplete' => 'off']) !!}
{!! Form::text('s_region_name', NULL, ['class' => 'form-control', 'required']) !!}
{!! Form::text('s_region_address', NULL, ['class' => 'form-control', 'required']) !!}
{!! Form::button('check Save', ['class' => 'btn btn-primary btn-fill text-center pull-right', 'type' => 'submit']) !!}
{!! Form::close() !!}
@stop

+