@extends('expenses.layouts.expense-layout') @section('title') Income Statement || @parent @stop @section('main-content')
Advance Filter

@if(count(Request::input())) Income Statement:
{{carbonDate($from, 'y-m-d')}} to {{carbonDate($to, 'y-m-d')}} @else {{date('F')}}'s' Income Statement @endif

Net Sales {{$net_sales}}
Cost of Sales {{$cost_of_sales}}
Gross Margin {{$gross_margin}}
Expenses:
@foreach($expenses as $index => $expense)
{{ $index }}
@endforeach
@foreach($expenses as $expense)
{{ $expense }}
@endforeach
Total Expense: {{$total_expense}}
Other Income: {{$others_income}}
Net @if($net_income > 0)Income @else Loss @endif ৳ {{abs($net_income)}}
@stop @section('post-js') @stop