@extends('layouts.adminapp') @section('title') {{ __('lng.DamageReport') }} - {{ __('lng.Print') }} @endsection @section('active_report', 'active') @section('open_report', 'open') @section('open_products_report', 'open') @section('active_products_report', 'active') @section('active_damage_report', 'active') @section('content')

{{ __('lng.Print') }}

@include('PrintHeader.header')

{{__('lng.DamageReport')}}

@php $si=0; @endphp @foreach ($Damages as $Damage) @php $Date = date("d-m-Y",strtotime($Damage->date));@endphp @endforeach
{{ __('lng.SiNo') }} {{ __('lng.Date') }} {{ __('lng.Invoice') }} {{ __('lng.Amount') }} {{ __('lng.TaxAmount') }} {{ __('lng.TotalAmount') }} {{ __('lng.Action') }}
{{ ++$si }} {{ $Date }} {{ $Damage->invoicenumber }} @currency($Damage->amount) @currency($Damage->tax_amount) @currency($Damage->total_amount)
{{ __('lng.Back') }}
@endsection