@extends('hrms.layouts.base') @section('content')
@if(Session::has('flash_message'))
{{ Session::get('flash_message') }}
@endif {!! Form::open(['class' => 'form-horizontal']) !!}
@foreach($assets as $asset) @endforeach {!! $assets->render() !!}
Id Employee Asset Issuing Authority Date of Assignment Date of Release Actions
{{$i+=1}} {{$asset->user_id}} {{$asset->asset_id}} {{$asset->authority_id}} {{$asset->date_of_assignment}} {{$asset->date_of_release}}
{!! Form::close() !!}
@endsection