@extends('layouts.pdf') @section('content')

{{__('inventory.inventory_details')}}

{{__('commons.name')}} {{ $inventory->name }}
{{__('inventory.inventory_image')}} @if (!empty($inventory->inventory_image)) inventory_image }}" alt="Inventory Image" class="thumbnail medium" /> @endif
{{__('inventory.inventory_type')}} {{ optional($inventory->inventoryType)->title }}
{{__('inventory.inventory_unit')}} {{ optional($inventory->inventoryUnit)->title }}
{{__('inventory.source')}} {{ $inventory->source }}
{{__('inventory.warranty')}} {{ $inventory->warranty }}
{{__('commons.description')}} {{ $inventory->description }}
{{__('commons.instruction')}} {{ $inventory->instruction }}
{{__('commons.created_by')}} {{ optional($inventory->creator)->name }}
{{__('commons.created_at')}} {{ $inventory->created_at }}
{{__('commons.update_at')}} {{ $inventory->updated_at }}
@endsection