@extends('layouts.business.master') @section('title') {{ __('Loss Profit Reports') }} @endsection @section('main_content')

{{ __('Loss Profit Report List') }}

{{ __('Loss') }}

{{ currency_format($loss, currency: business_currency()) }}

{{ __('Profit') }}

{{ currency_format($profit, currency: business_currency()) }}

{{ __('Total Sale') }}

{{ $total_sale_count }}

@include('business::print.header')

{{ __('Loss Profit Report List') }}

@csrf
@include('business::reports.loss-profits.datas')
{{ __('SL') }}. {{ __('Invoice') }} {{ __('Name') }} {{ __('Total') }} {{ __('Loss/Profit') }} {{ __('Date') }} {{ __('Status') }}
{{ $loss_profits->links('vendor.pagination.bootstrap-5') }}
@endsection