@extends('layouts.app',['pageTitle' => __('Assets')]) @section('page-content')
{{ __('Assets') }}

{{ __('Asset Info') }}

  • {{ __('Name') }}

    {{ $asset->name }}

  • {{ __('Brand') }}

    {{ $asset->brand }}

  • {{ __('Model') }}

    {{ $asset->model }}

  • {{ __('Manufacturer') }}

    {{ $asset->manufacturer }}

  • {{ __('Serial Number') }}

    {{ $asset->serial_no }}

{{ __('Asset History') }}

  • {{ __('Supplier') }}

    {{ $asset->supplier }}

  • Cost

    {{ LocaleSettings('currency_symbol')." ".$asset->cost }}

{{ __('Purchase') }}

  • {{ __('Purchase Date') }}

    {{ $asset->purchase_date }}

  • {{ __('Purchased From') }}

    {{ $asset->purchase_from }}

{{ __('Warranty') }}

  • {{ __('Warranty') }}

    {{ $asset->warranty.' '.\Str::plural('Month',$asset->warranty) }}

  • {{ __('Warranty End Date') }}

    {{ format_date($asset->warranty_end) }}

@if (!empty($asset->files))

{{ __('Asset Files') }}

    @foreach ($asset->files as $file) @if (is_string($file))
  • Keyboard Image
  • @endif @endforeach
@endif
@endsection @push('page-scripts') @endpush