@extends('layouts.content') @section('content')
{!! Form::open(['url' => 'archive/search', 'class' => 'navbar-form', 'role' => 'search']) !!}
{!! Form::text('search', NULL, ['class' => 'form-control', 'placeholder' => 'Search', 'required']) !!}
{!! Form::close() !!} @if(!count($archives))

No data found.

@else @foreach($archives as $key => $user) @endforeach
ID Name Designation Role
{{ ($archives->currentpage() - 1) * $archives->perpage() + $key + 1 }} {{ $user->u_lname }}, {{ $user->u_fname }} {{ format_middle_name($user->u_mname) }} {{ $user->u_position }} {{ $user->role->r_name }}
@if($archives->render())
{!! $archives->render() !!}
@endif @endif
@stop