@extends('layouts.app') @section('content-header')

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

@endsection @section('content')

{{ isset($inventoryType->title) ? ucfirst($inventoryType->title) : 'Inventory Type' }} {{__('commons.full_information')}}

{{ csrf_field() }} @if (App\Helpers\CommonHelper::isCapable('inventory_types.index')) @endif @if (App\Helpers\CommonHelper::isCapable('inventory_types.create')) @endif @if (App\Helpers\CommonHelper::isCapable('inventory_types.edit')) @endif @if (App\Helpers\CommonHelper::isCapable('inventory_types.destroy')) @endif
{{__('commons.title')}} {{ $inventoryType->title }}
{{__('commons.status')}} {{ $inventoryType->status }}
{{__('commons.created_at')}} {{ $inventoryType->created_at }}
{{__('commons.update_at')}} {{ $inventoryType->updated_at }}
@endsection