@extends(!in_array(\Auth::user()->role, [10, 15]) ? 'layout' : 'layoutfrontdesk') @section('title', 'Stock Opname List') @section('css') @endsection @section('content')

Filter Data

{{-- @php $filter_date = $_GET['tanggal'] ?? ''; $filter_department = $_GET['department'] ?? ''; $filter_type = $_GET['type'] ?? ''; @endphp --}}
@if (!$stock_opnames->isEmpty()) @foreach($stock_opnames as $so) @foreach (@$so->stockOpnameDetail as $detail) @endforeach @endforeach @endif
none Department DocNo Stock Opname Date ArtNo Description QOH Actual Stock Difference Actions
{{ $so->from_storage_id != 0 ? $so->storageFrom->description : 'General Storage' }} {{ $so->id }}+{{ $so->document_no }}+{{dateFormat(@$so->transaction_time, 'd-m-Y H:i:s')}}+ {{ $so->department->name }}+{{ $so->stock_opname_date }}+{{ getSystemDate() }} {{ date('d-m-Y', strtotime($so->stock_opname_date)) }} {{ @$detail->stock->article_no }} {{ @$detail->stock->description }} {{ ribuanDuaAngkaBelakangKomaIndoFilter(@$detail->qoh) }} {{ ribuanDuaAngkaBelakangKomaIndoFilter(@$detail->qty) }} {{ ribuanDuaAngkaBelakangKomaIndoFilter(@$detail->difference) }}
@endsection @section('js') @endsection