@extends('layouts.data-entry') @section('title','GIMS') @section('styles') @endsection @section('script') @endsection @section('content')
Equipment Allocation Reprocess Form
{{ Form::open(['url'=>route('allocation.store'), 'id'=>'equipment-form', 'files'=>'true'] )}}
{{ Form::label('allocation','allocation Type: ',['class'=>'col-sm-3']) }}
{{ Form::select('allocation_type', ['agency'=>'Agency','custodian'=>'Custodian'], 'Agency',['class'=>'form-control form-control-sm','id'=>'allocation_id','required'=>true ] ) }}

@include('data_entry.section.uagency-hirerchy')




@if($allocationasset) @foreach($allocationasset as $key => $draft_value) @endforeach @endif
Sl.No Identification Category Sub Category Equipment Name Serial no Specification Action
{{ $key+1}} Delete

{{ Form::close() }}
@endsection