@extends('admin.layouts.app') @section('title', get_setting('site_name').' | '.__('Asset items')) @include('admin.asset.partials.page_styles') @push('css') @endpush @section('content')
{{ __('Register, track and manage fixed assets, consumables, fleet and bulk stock.') }}
| {{ __('Name') }} | {{ __('Type') }} | {{ __('Category') }} | {{ __('Serial / code') }} | {{ __('Branch') }} | {{ __('Holder') }} | {{ __('Qty') }} | {{ __('Status') }} | {{ __('Action') }} |
|---|---|---|---|---|---|---|---|---|
|
{{ $item->name }}
@if($item->department?->name)
{{ $item->department->name }}
@endif
|
{{ $item->typeLabel() }} | {{ $categoryLabel }} | {{ $item->identity ?: $item->code ?: '—' }} | @if($item->branch?->name) {{ $item->branch->name }} @else — @endif | {{ $item->holderLabel() }} | {{ $item->formattedQty() }} | {{ $item->statusLabel() }} | @can('Asset-edit') @if(\App\Support\Asset\AssetType::usesBulkQuantity($item->asset_type ?? '') && ($item->tracking_mode ?? '') === 'bulk_quantity') @endif @endcan @can('Asset-delete') @endcan |
| {{ __('No assets match your filters.') }} | ||||||||