@extends('layouts.app') @section('title', 'Asset Register') @section('content')
@if(session('success'))
{{ session('success') }}
@endif
@include('hr.head')
@include('hr.sidenav')

Asset Register

@foreach($assets as $asset)
Item Name

{{ $asset->item_name }}

Date

{{ date('d M, Y', strtotime($asset->date)) }}

Documentation

{{ $asset->documentation }}

{{ $asset->document_name }}

@if(!empty($notes))
Notes

{{ $asset->notes }}

@endif
routine_checks==1) checked disabled @endif class="form-check-input receivePPE" type="checkbox" data-id="{{ $asset->id }}" id="asset_{{ $asset->id }}" />
@endforeach
@endsection @section('js') @endsection