@extends('layouts/default') {{-- Page title --}} @section('title') @if ($item->id) {{ trans('admin/accessories/general.update') }} @else {{ trans('admin/accessories/general.create') }} @endif @parent @stop {{-- Page content --}} @section('content') @if ($item->id) {{ $item->name }} @endif {{-- Acquisition metadata is create-only. Post-create qty changes flow through the adjust-quantity modal so each change becomes a QuantityAdjust action_log entry (with its own note / order_number / supplier / date / price) instead of a silent parent-column overwrite. Every later acquisition lives on its own Order + OrderItem. --}} @if (! $item->id) @endif @stop