@extends('layouts.app') @section('content')

Approval Recycle : edit

This is page for approval Approval Recycle
@switch($recycleRequest->is_approved) @case(false) Waiting for approval @break @case(true) Complete @break @default @endswitch
@switch($recycleRequest->is_approved) @case(false) @break @case(true) @break @default @endswitch
Expenditure Request No : {{ $recycleRequest->no }}
Expenditure Request Date : {{ $recycleRequest->formatted_date }}
Statement : {{ $recycleRequest->statement }}
Explaination and Reasoning : {{ $recycleRequest->reason }}
Request by : {{ $recycleRequest->createdBy->full_contact }}
Status : @switch($recycleRequest->is_approved) @case(false) Waiting for approval @break @case(true) Complete @break @default @endswitch
Approved By : {{ $recycleRequest->approvedBy->full_contact }}
Approved At : {{ $recycleRequest->formatted_approved_at }}

Recycle Material Detail

This is waste material detail to Expendition
@foreach ($recycleRequest->details as $detail) @endforeach
Material Code Material Name Material UoM Divisi Code Qty Qty Approved Action
{{ $detail->material_code }} {{ $detail->material->name }} {{ $detail->material->uom_code }} {{ $detail->divisi_code }} {{ $detail->qty }} {{ $detail->qty_approved }}

Are you sure want to approve this?

@csrf @method('PUT')
@endsection @section('js') @endsection