%PDF- %PDF-
Direktori : /home/silvzytp/crm-ind-code/resources/views/backend/report/ |
Current File : //home/silvzytp/crm-ind-code/resources/views/backend/report/export.blade.php |
<!-- Modal --> <div class="modal fade" id="export-modal" tabindex="-1" role="dialog" aria-hidden="true"> <div class="modal-dialog modal-sm" role="document"> <div class="modal-content border-0 rounded-0"> <div class="modal-header bg-primary py-2 rounded-0"> <h6 class="modal-title text-light">Filter</h6> <button type="button" class="close text-light" data-dismiss="modal" aria-label="Close"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body"> <form action="{{ route('super.report.export') }}" id="export-form" method="POST"> @csrf <x-form.selectbox labelName="Year" name="year"> @for ($i=2000;$i<=$current_year; $i++) <option value="{{ $i }}" {{ $i == $current_year ? 'selected' : '' }}>{{ $i }}</option> @endfor </x-form.selectbox> <div class="form-group"> <label for="month">Month</label> <select name="month" id="month" class="form-control form-control-sm" required> <option value="">-- Select Month --</option> @foreach (MONTH as $key=>$value) <option value="{{ $key }}">{{ $value }}</option> @endforeach </select> </div> <div class="text-right mt-3"> <button type="submit" class="btn btn-sm btn-primary save-btn">Export</button> </div> </form> </div> </div> </div> </div>