@extends('admin.layouts.layouts') @section('title', 'View Asset Inventory') @section('page-css') @endsection @section('content')
Asset Inventory View
← Back
Asset Category:
{{ $showDetails->assetInventory?->assetCategory?->name ?? '-' }}
Serial No:
{{ $showDetails->serial_no ?? '-' }}
@php $statuses = [ 'Allocated' => ['label' => 'Allocated', 'class' => 'info'], 'Free' => ['label' => 'Free', 'class' => 'success'], ]; $status = $statuses[$showDetails->status] ?? ['label' => '', 'class' => '']; // $disabled = in_array($showDetails->status, ['Free', 'Rejected', 'Booking Done']) ? 'disabled' : ''; @endphp
Status:
{{--
--}} {{ $status['label'] }}
Asset:
{{ $showDetails->assetInventory?->asset?->name ?? '-' }}
Code:
{{ $showDetails->code ?? '-' }}
{{-- Asset Inventory Histories --}}
Asset Allocation History
# Employee Name From To Reason Allocated By
@endsection @section('page-js') @endsection