@extends('master.app') @section('title', 'Asset Details') @section('body')

Asset Details

Full information and attachments
{{ $asset->name }}
Department: {{ $asset->departement ?? 'N/A' }}   |   Date: {{ $asset->date ?? 'N/A' }}
{{ ($asset->status == 1) ? 'Active' : 'Inactive' }}

Quantity
{{ number_format($asset->quantity ?? 0) }}
Price
{{ number_format($asset->price ?? 0) }}
Total
{{ number_format($asset->total ?? 0) }}
Condition
{{ $asset->condition ?? 'N/A' }}
Model / Vendor
{{ $asset->model ?? 'N/A' }} / {{ $asset->vendor_number ?? 'N/A' }}
Description
{{ $asset->description ?? 'N/A' }}
Picture
@if($asset->picture) pic @else
No picture uploaded
@endif
Document
@if($asset->document) Open / Download Document @else
No document uploaded
@endif
@endsection