@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
Reminder

{{ ucfirst($asset->reminder_type) }} ({{ $asset->reminder_day }})

@endforeach
@csrf
@include('hr.footer') @endsection @section('js') @include('hr.footer') @endsection