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

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

@endsection @section('content')

{{ isset($title) ? ucfirst($title) : 'Inventory Stock' }} {{__('commons.full_information')}}

{{ csrf_field() }} @if (App\Helpers\CommonHelper::isCapable('inventory_stocks.index')) @endif @if (App\Helpers\CommonHelper::isCapable('inventory_stocks.create')) @endif @if (App\Helpers\CommonHelper::isCapable('inventory_stocks.edit')) @endif @if (App\Helpers\CommonHelper::isCapable('inventory_stocks.destroy')) @endif
{{__('inventory.inventory')}} {{ optional($inventoryStock->inventory)->name }}
{{__('ledgers.amount')}} {{ $inventoryStock->amount }}
{{__('commons.created_by')}} {{ optional($inventoryStock->creator)->name }}
{{__('commons.created_at')}} {{ $inventoryStock->created_at }}
{{__('commons.update_at')}} {{ $inventoryStock->updated_at }}
@endsection