71 lines
2.8 KiB
PHP
71 lines
2.8 KiB
PHP
@extends('layouts.app')
|
|
|
|
@section('title', 'Adjustment Details')
|
|
|
|
@push('page_css')
|
|
@livewireStyles
|
|
@endpush
|
|
|
|
@section('breadcrumb')
|
|
<ol class="breadcrumb border-0 m-0">
|
|
<li class="breadcrumb-item"><a href="{{ route('home') }}">Home</a></li>
|
|
<li class="breadcrumb-item"><a href="{{ route('adjustments.index') }}">Adjustments</a></li>
|
|
<li class="breadcrumb-item active">Details</li>
|
|
</ol>
|
|
@endsection
|
|
|
|
@section('content')
|
|
<div class="container-fluid">
|
|
<div class="row">
|
|
<div class="col-12">
|
|
<div class="card">
|
|
<div class="card-body">
|
|
<div class="table-responsive">
|
|
<table class="table table-bordered">
|
|
<tr>
|
|
<th colspan="2">
|
|
Date
|
|
</th>
|
|
<th colspan="2">
|
|
Reference
|
|
</th>
|
|
</tr>
|
|
<tr>
|
|
<td colspan="2">
|
|
{{ $adjustment->date }}
|
|
</td>
|
|
<td colspan="2">
|
|
{{ $adjustment->reference }}
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<th>Product Name</th>
|
|
<th>Code</th>
|
|
<th>Quantity</th>
|
|
<th>Type</th>
|
|
</tr>
|
|
|
|
@foreach($adjustment->adjustedProducts as $adjustedProduct)
|
|
<tr>
|
|
<td>{{ $adjustedProduct->product->product_name }}</td>
|
|
<td>{{ $adjustedProduct->product->product_code }}</td>
|
|
<td>{{ $adjustedProduct->quantity }}</td>
|
|
<td>
|
|
@if($adjustedProduct->type == 'add')
|
|
(+) Addition
|
|
@else
|
|
(-) Subtraction
|
|
@endif
|
|
</td>
|
|
</tr>
|
|
@endforeach
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
@endsection
|