@extends('layouts.default') @php use App\Models\inventory\Issue_model; use App\Models\inventory\Purchase_model; @endphp @section('title','Dashboard') @push('scripts')
@endpush @section('content')
@if (session('status'))
{!! session('status') !!}
@elseif(session('failed'))
{{ session('failed') }}
@endif @if(\Session::has('success'))
{{\Session::get('success')}}
@endif
AMC Report
{!! Form::Label('District', 'Select District') !!}
All
All District
All Taluka
{!! App\Models\inventory\Purchase_model::ShowDistrictDropDown(old('district')) !!}
{{ $errors->first('district') }}
{!! Form::Label('Taluka', 'Select Taluka') !!}
Select Bench
{{ $errors->first('bench_id') }}
{!! Form::Label('product', 'By Product') !!}
{!! App\Models\inventory\Purchase_model::ShowProductDropDown(old('product')) !!}
{{ $errors->first('product') }}
{!! Form::Label('Model', 'By Model') !!}
Select Model No
@endsection