@extends('layouts.app') {{-- Important Variables --}} @section('title') {{__('lang.sale_aging_report')}} @stop @section('top-bar') @include('includes.top-bar') @stop @section('left-sidebar') @include('includes.left-sidebar') @stop @section('content') {{__('lang.sale_aging_monthwise_report')}} {{__('lang.search_criteria')}} {{ csrf_field() }} {{__('lang.select_project')}} @if (App\Models\Branch::userProjects()->get()->count() > 0) @foreach (App\Models\Branch::userProjects()->get() as $Branch) {{ $Branch->name }} @endforeach @endif {{__('lang.project')}} {{__('lang.select_status')}} {{__('lang.all')}} {{__('lang.paid')}} {{__('lang.unpaid')}} {{-- Partial Paid --}} {{__('lang.status')}} {{__('lang.select_year')}} @for ($i = 2015; $i <= date('Y'); $i++) {{ $i }} @endfor {{__('lang.from')}} @php $to_year = date('Y') + 10; @endphp {{__('lang.select_year')}} @for ($i = date('Y'); $i <= $to_year; $i++) {{ $i }} @endfor {{__('lang.to')}} {{__('lang.clear')}} @stop @push('include-css') @endpush @push('include-js') {{-- --}} @endpush