@extends('layouts.app') @section('title', __('warehouse.item_stock_transfer_report')) @section('content')
{{-- CSRF Protection --}} @csrf @method('POST')
{{ __('warehouse.item_stock_transfer_report') }}
@php $defaultFromDate = request()->get('auto_download') == 1 ? now()->subDay()->format(app('company')['date_format']) : ''; $defaultToDate = request()->get('auto_download') == 1 ? now()->format(app('company')['date_format']) : ''; @endphp
{{ __('app.records') }}
# {{ __('warehouse.transfer_code') }} {{ __('app.date') }} {{ __('warehouse.from_warehouse') }} {{ __('warehouse.to_warehouse') }} {{ __('item.item_name') }} {{ __('item.brand.brand') }} {{ __('item.serial_or_imei_number') }} {{ __('item.batch_no') }} {{ __('item.purchase_price') }} {{ __('item.quantity') }} {{ __('unit.unit') }} {{ __('app.total') }}
@endsection @section('js') @include("plugin.export-table") @if(request()->get('auto_download') == 1) @endif @endsection