{{ trans('app.image') }}
@if ($warehouse->manager) @endif
{{ trans('app.name') }}: {{ $warehouse->name }}
{{ trans('app.incharge') }}: {{ $warehouse->manager->name }}
{{ trans('app.status') }}: {{ $warehouse->active ? trans('app.active') : trans('app.inactive') }}
{{ trans('app.available_from') }}: {{ $warehouse->created_at->toFormattedDateString() }}
{{ trans('app.updated_at') }}: {{ $warehouse->updated_at->toDayDateTimeString() }}
  • {{ trans('app.inventories') }}
  • {{ trans('app.description') }}
  • {{ trans('app.contact') }}
{{-- --}} @foreach ($warehouse->inventories as $inventory) {{-- --}} @endforeach
{{ trans('app.image') }} {{ trans('app.sku') }} {{ trans('app.name') }} {{ trans('app.condition') }}{{ trans('app.tax') }}{{ trans('app.price') }} ( {{ trans('app.excl_tax') }} ) {{ trans('app.quantity') }} {{ trans('app.status') }} {{ trans('app.option') }}
@if ($inventory->image) {{ trans('app.image') }} @else {{ trans('app.image') }} @endif {{ $inventory->sku }} {{ $inventory->product->name }} {{ $inventory->condition }}{{ get_formated_decimal($inventory->tax->taxrate) . ' ' . trans('app.percent') }} @if ($inventory->offer_price > 0 && $inventory->offer_end > \Carbon\Carbon::now()) @php $offer_price_help = trans('help.offer_starting_time') . ': ' . $inventory->offer_start->diffForHumans() . ' and ' . trans('help.offer_ending_time') . ': ' . $inventory->offer_end->diffForHumans(); @endphp {{ $inventory->sale_price }}
{{ get_formated_currency($inventory->offer_price, 2, config('system_settings.currency.id')) }} @else {{ get_formated_currency($inventory->sale_price, 2, config('system_settings.currency.id')) }} @endif
{{ $inventory->stock_quantity > 0 ? $inventory->stock_quantity : trans('app.out_of_stock') }} {{ $inventory->active ? trans('app.active') : trans('app.inactive') }}   {!! Form::open(['route' => ['admin.stock.inventory.trash', $inventory->id], 'method' => 'delete', 'class' => 'data-form']) !!} {!! Form::button('', ['type' => 'submit', 'class' => 'confirm ajax-silent', 'title' => trans('app.trash'), 'data-toggle' => 'tooltip', 'data-placement' => 'top']) !!} {!! Form::close() !!}
@if ($warehouse->description) {!! $warehouse->description !!} @else

{{ trans('app.description_not_available') }}

@endif
@if ($warehouse->primaryAddress) @endif @if ($warehouse->email) @endif
{{ trans('app.address') }}: {!! $warehouse->primaryAddress->toHtml() !!}
{{ trans('app.email') }}: {{ $warehouse->email }}