@extends('backend.layouts.app') @section('content')

{{__('Business Summary')}}

@if($start_date!=null) Date Range : {{$start_date }} {{$start_date? " to":''}} {{$end_date }} @endif
{{__('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

@else

None

@endif
@endsection