@extends('layouts.business.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_count }}

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

{{ __('Product List') }}

@csrf
@csrf
@include('business::loss-profits.datas')
{{ __('SL') }}. {{ __('Invoice') }} {{ __('Name') }} {{ __('Total') }} {{ __('Loss/Profit') }} {{ __('Date') }} {{ __('Status') }} {{ __('Action') }}
{{ $loss_profits->links('vendor.pagination.bootstrap-5') }}
@php $currency = business_currency(); @endphp {{-- Hidden input fields to store currency details --}} @endsection @push('modal') @include('business::loss-profits.view') @endpush