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

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

{{-- search bar --}}

{{ __('Loss') }}

{{ currency_format($loss, 'icon', 2, business_currency()) }}

{{ __('Profit') }}

{{ currency_format($profit, 'icon', 2, business_currency()) }}

{{ __('Total Sale') }}

{{ $total_sale }}

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

{{ __('Product List') }}

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