@extends('layouts.app') @section('title') All Customer Adjustments @stop @section('breadcrumb') @stop @section('content')

All Adjustments

@foreach($adjustments as $adj) @if($adj->type == \App\Receipt::property) @elseif($adj->type == \App\Receipt::vehicle) @elseif($adj->type == \App\Receipt::rebate) @elseif($adj->type == \App\Receipt::vendor) @elseif($adj->type == \App\Receipt::others) @else @endif @if($adj->status == true) @else @endif @endforeach
# Receipt # Customer Unit Type Merge Amt Sold Amt Status Date Action
{{$count++}} {{$adj->receipt_id}} {{$adj->receipt ? $adj->receipt->customer->name: '' }} {{$adj->receipt ? $adj->receipt->property->inventory->unit_number : ''}} Property Vehicle Rebate Vendor bill Others {{$adj->merge_amount}} {{$adj->sold_amount}}OpenSold{{date('d-m-Y', strtotime($adj->created_at)) }} @permission('view-customer-adjustment') @endpermission @permission('edit-customer-adjustment') @endpermission
@stop @section('js') @stop