@extends('layouts.admin-simple') @section('title', 'Fixed Assets - Project Assets') @section('breadcrumb') @endsection @section('page-title')

Project Assets

Fixed assets currently allocated to projects

arrow_back Back to Overview
@endsection @section('content')
Clear
businessProject Assets
@php $condColors = ['new'=>'success','good'=>'info','fair'=>'warning','poor'=>'danger','damaged'=>'danger','non_functional'=>'dark']; @endphp @forelse($assets as $i => $asset) @empty @endforelse
# Asset Code Asset Name Category Project Serial Number Condition Book Value Allocated Since
{{ $assets->firstItem() + $i }} {{ $asset->asset_code }} {{ $asset->asset_name }} {{ $asset->category ? $asset->category->category_name : '-' }} {{ $asset->currentProject ? $asset->currentProject->project_name : '-' }} {{ $asset->serial_number ?? '-' }} {{ ucfirst($asset->condition) }} AED {{ number_format($asset->current_book_value ?? $asset->purchase_price, 2) }} {{ $asset->allocation_date ? \Carbon\Carbon::parse($asset->allocation_date)->format('M d, Y') : '-' }} visibility
business

No assets currently allocated to projects.

@if($assets->hasPages()) @endif
@endsection @push('styles') @endpush @push('scripts') @endpush