@extends('layouts.master') @section('title', 'Income Statement') @section('page-header') Income Statement @stop @push('style') @endpush @section('content')
@include('partials._alert_message') @php $from = request('from', date('Y-m-d')); @endphp


@yield('page-header')

Print

INCOME STATEMENT

@foreach ($companyNames as $name) @if ($loop->first) {{ $name }} @else {{ ', ' . $name }} @endif @endforeach

As On {{ fdate(request('from') ?? today(), 'd/m/Y') }}

{{-- --}} {{-- --}} @include('includes.input-groups.date-range')
{{-- --}} {{-- --}}
@if (request()->filled('is_details')) @include('reports/income-statement/details-view') @else @include('reports/income-statement/sort-view') @endif
@endsection @section('js') @endsection