@extends('layouts.app') @section('title') Inventory Return @stop @section('breadcrumb') @stop @section('css') @stop @section('content')

Inventory Return / @if($purchase_request_id == 0 ) {{'Department'}} @else MIR-{{$item_releasings->mir_id}} @endif Print

Return Inventory Request Details

Company {{ env('APP_NAME')}}
Contact {{env('APP_CONTACT')}}
Address {{env('APP_ADDRESS')}}
Department {{ !empty($item_releasings->department)?$item_releasings->department->department_name:''}}
Return By {{ ucfirst($item_releasings->returning_name) }}
Returning Date {{ date('d-F-Y' , strtotime($item_releasings->return_date) )}}
Received By {{ $item_releasings->receiver_name}}

Inventory List

@foreach( $item_releasings->releasing_items as $item_list ) @php $item = \App\Item::withTrashed()->find($item_list->item_id); $current_return = $item_list->return_quantity; @endphp @endforeach
Code Inventory Return Quantity
{{$item->item_code}} {{$item->item_name}} - {{$item->manufacture->name}} Non Critical {{$current_return}}

Total Inventory: {{number_format($count, 2)}}

Total Inventory Quantity: {{number_format($quantity, 2)}}

@stop @section('js') @stop