@extends('layouts.app') @section('stitle', __('messages.wastage_report')) @section('title', __('messages.wastage_report')) @section('content')
@include('reports.reports_wastage_menu')
@if($data->isNotEmpty())
@forelse($data as $wastage) @empty @endforelse @if($data->isNotEmpty()) @endif
{{__('messages.BUSINESSDATE')}} {{__('messages.Branch')}} {{__('messages.branch_reference')}} {{__('messages.order_reference')}} {{__('messages.Item')}} {{__('messages.SKU')}} {{__('messages.wastage_in_unit')}} {{__('messages.wastage_cost')}}
{{$wastage->business_date}} {{$wastage->branch->name}} {{$wastage->branch->reference}} {{$wastage->order_reference}} {{$wastage->name}} {{$wastage->sku}} {{$wastage->total_wastage_in_unit}} {{$wastage->wastage_cost}}
There is not any order from Today ! Select Filters for previous existing records.
Totals {{ $data->sum('wastage_cost') }}
@else
No Data Found! Adjust the date & filters in the report to get more specific results.
@endif
@endsection @push('my_scripts') @endpush