@extends('layouts.app') {{--Important Variables--}} @section('title') Sales Recovery Report @stop @section('top-bar') @include('includes.top-bar') @stop @section('left-sidebar') @include('includes.left-sidebar') @stop @section('content') Sales Recovery Report Search Criteria {{ csrf_field() }} Select Project Name ALL PROJECTS @if (App\Models\Branch::userProjects()->get()->count() >0 ) @foreach( App\Models\Branch::userProjects()->get() as $Branch ) {{ $Branch->name }} @endforeach @endif Project Select Customer Name All Customers @foreach( App\Models\Customer::all() as $customer ) {{ $customer->name }} @endforeach Customer Select Sale Status ALL ACTIVE CANCELLED BLOCKED REACTIVATE REFUNDED BUY BACK CANCELLATION FULL PAID TRANSFERED Sale Status Registration No @include("admin.reports.partials.agents",[ 'col' => '6' ]) Select Month @foreach($common->getLastSixMonths() as $month ) {{$month}} @endforeach Previous Months @include('layouts.components.select_field', [ 'col' => 6, 'name' => 'internel_dealer_id', 'options' => $internel_dealers, 'default_option'=> __('lang.select_internal_dealer_name'), ]) @include('layouts.components.select_field', [ 'col' => 6, 'name' => 'external_dealer_id', 'options' => $external_dealers, 'default_option'=> __('lang.select_external_dealer_name'), ]) @include('layouts.components.select_field', [ 'col' => 6, 'name' => 'floor_id', 'options' => $floors, 'default_option'=> __('lang.all_floor'), 'label' => __('lang.floor'), ]) From To @stop @push('include-css') @endpush @push('include-js') @endpush