{{__('file.Tag')}} | : | {{ $asset->tag }} |
{{__('file.Name')}} | : | {{ $asset->name }} |
{{__('file.Type')}} | : | {{ $asset->asset_type->name }} |
{{__('file.Cost')}} | : | {{ number_format($asset->cost,2)}} |
{{__('file.Purchase Date')}} | : | {{ $asset->purchase_date ? date('j F, Y',strtotime($asset->purchase_date)) : '' }} |
{{__('file.Warranty')}} ({{__('file.Months')}}) | : | {!! $asset->warranty !!} |
{{__('file.Asset User')}} | : | {!! $asset->user !!} |
{{__('file.Location')}} | : | {!! $asset->location !!} |
{{__('file.Asset Condition')}} | : | {{ ASSET_STATUS[$asset->status] }} |
{{__('file.Description')}} | : | {!! $asset->description !!} |
{{__('file.Created By')}} | : | {{ $asset->created_by }} |
{{__('file.Create Date')}} | : | {{ $asset->created_at ? date(config('settings.date_format'),strtotime($asset->created_at)) : '' }} |
@if($asset->modified_by){{__('file.Modified By')}} | : | {{ $asset->modified_by }} |
@endif
@if($asset->modified_by){{__('file.Modified Date')}} | : | {{ $asset->updated_at ? date(config('settings.date_format'),strtotime($asset->updated_at)) : '' }} |
@endif