File: /var/www/html/hrms-production/resources/views/admin/Reports/employee-writ-petition.blade.php
@extends('admin.include.master')
@section('content')
<!-- Content Wrapper. Contains page content -->
<div class="content-wrapper">
<!-- Content Header (Page header) -->
<section class="content-header">
<div class="container-fluid">
<div class="row mb-2">
<div class="col-sm-6">
<h1>Write Petition of University Employees</h1>
</div>
<div class="col-sm-6 text-right">
<button type="button" class="btn btn-sm btn-outline-info mx-1" data-toggle="modal"
data-target="#addEmployeePetition">Add New</button>
</div>
</div>
</div><!-- /.container-fluid -->
</section>
<!-- Main content -->
<section class="content">
<div class="container-fluid">
{{-- Country List --}}
<div class="row">
<div class="col-12">
<div class="card">
{{-- <div class="card-header">
</div> --}}
<!-- /.card-header -->
<div class="card-body">
<table id="employeeWritPetitionTable" class="table table-bordered table-striped table-sm">
<thead>
<tr>
<th>S.No.</th>
<th>Court</th>
<th>Writ Petition No.</th>
<th>Parties Name</th>
<th>Case Description</th>
<th>Case Status</th>
<th>Previous Date</th>
<th>Next Date</th>
<th>Authorized Officer</th>
<th>Action</th>
</tr>
</thead>
<tbody>
@foreach ($EmployeeWritPetition as $EmployeeWritPetition)
<tr>
<td>{{ $loop->iteration }}</td>
<td><a href="{{ url('/view-employee-write-petition/'.$EmployeeWritPetition->WritPetitionId) }}"
target="_blank">{{ $EmployeeWritPetition->Court }}</a></td>
<td>{{ $EmployeeWritPetition->WritPetitionNo }}</td>
<td>{{ $EmployeeWritPetition->PartyName }}</td>
<td>{{ $EmployeeWritPetition->CaseDescription }}</td>
<td>{{ $EmployeeWritPetition->CaseStatus }}</td>
<td>{{ $EmployeeWritPetition->PrevDate }}</td>
<td>{{ $EmployeeWritPetition->NextDate }}</td>
<td>{{ $EmployeeWritPetition->AuthorizedOfficer }}</td>
<td>
<div class="btn-group">
<button type="button"
class="btn btn-default btn-sm dropdown-toggle dropdown-icon"
data-toggle="dropdown" aria-expanded="false">
</button>
<div class="dropdown-menu dropdown-menu-right" role="menu">
<a type="button" class="dropdown-item btn btn-default"
href="{{ url('/view-employee-write-petition/'.$EmployeeWritPetition->WritPetitionId) }}"
target="_blank">View</a>
@if ($EmployeeWritPetition->ApprovalLock == 0)
<button type="button" class="dropdown-item btn btn-default"
onclick="editWritePetition('{{$EmployeeWritPetition->WritPetitionId }}')"
; class="btn btn-xs btn-outline-info" data-id="">Edit</button>
<button type="button" class="dropdown-item btn btn-default"
onclick="deleteWritePetition('{{ $EmployeeWritPetition->WritPetitionId }}')"
; class="btn btn-xs btn-outline-danger"
data-id="'{{ $EmployeeWritPetition->WritPetitionId }}'">Delete</button>
@endif
</div>
</div>
</td>
</tr>
@endforeach
</tbody>
</table>
</div>
<!-- /.card-body -->
</div>
<!-- /.card -->
</form>
</div>
<!-- /.col -->
</div>
<!-- /.row -->
</div>
<!-- /.container-fluid -->
</section>
<!-- /.content -->
</div>
{{-- JS Start Here --}}
{{-- Reset Form Button --}}
<script>
function formReset()
{
Swal.fire({
title: 'Do Want to reset form?',
text: "Are you sure you want to reset this form!",
icon: 'warning',
showCancelButton: true,
confirmButtonColor: '#3085d6',
cancelButtonColor: '#d33',
confirmButtonText: 'Yes, reset it!'
}).then(function() {
$('form#paySlipForm').each(function() {
this.reset();
});
});
}
</script>
<script>
$(function() {
$("#employeeWritPetitionTable").DataTable({
"responsive": true,
"lengthChange": true,
"autoWidth": false,
"lengthMenu": [10, 20, 50, 100, 250, 500],
//"buttons": ["copy", "csv", "excel", "pdf", "print", "colvis"]
}).buttons().container().appendTo('#userTable_wrapper .col-md-6:eq(0)');
});
</script>
<!-- /.content-wrapper -->
<x-EmployeePetitionModal />
@endsection