@extends('layouts.app') @section('title') Adjustment Detail @stop @section('breadcrumb') @stop @section('content')

Adjustment Information


@if($adjustment->type == \App\Receipt::property) @elseif($adjustment->type == \App\Receipt::vehicle) @elseif($adjustment->type == \App\Receipt::rebate) @elseif($adjustment->type == \App\Receipt::vendor) @elseif($adjustment->type == \App\Receipt::others) @else @endif @if($adjustment->status == true) @else @endif
Receipt No {{$adjustment->receipt_no}}
Customer Name {{$adjustment->receipt->customer? $adjustment->receipt->customer->name: ''}}
Unit {{$adjustment->receipt->property ? $adjustment->receipt->property->inventory->unit_number : ''}}
Adjustment Type Property Vehicle Rebate Vendor bill Others
Description {{$adjustment->description}}
Merge Amount {{$adjustment->merge_amount}}
Sold Amt {{$adjustment->sold_amount}}
StatusOpenSold
Updated at {{$adjustment->updated_at}}
Created at {{$adjustment->created_at}}
@stop