@extends('backend.layouts.app') @section('content')
| {{__('Description')}} | {{__('Cost Amount')}} |
|---|---|
| {{__('Total Sell ')}}: | {{single_price($sell)}} |
| {{__('Total Profit')}}: | {{single_price($profit)}} |
| {{__('Total Expense')}}: | {{ single_price($expense)}} |
| {{__('Net Profit')}} | {{$netprofit}} |
| {{__('Business Status')}} |
@if($profit > $expense)
Profit @elseif($profit < $expense)Loss @elseNone @endif |