@extends('layouts.app') @section('title', __('Profit & Loss Statement')) @section('content')

Profit & Loss Statement

@component('components.filters', ['title' => __('report.filters')])
{!! Form::label('profit_loss_location_id', __('purchase.business_location') . ':') !!} {!! Form::select('profit_loss_location_id', $business_locations, null, ['class' => 'form-control select2', 'style' => 'width:100%']); !!}
{!! Form::label('fiscal_year', __('Fiscal Year') . ':') !!} {!! Form::select('fiscal_year', $fiscal_years, $current_year, ['class' => 'form-control select2', 'style' => 'width:100%']); !!}
{!! Form::label('as_of_date', __('As Of Date') . ':') !!}
@endcomponent

Loading...
@stop @section('javascript') @endsection