Viewing file: index.blade.php (8.27 KB) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
@extends('layouts.admin') @section('page-title') {{__('Manage Indicator')}} @endsection @push('css-page') <style> @import url({{ asset('css/font-awesome.css') }}); </style> @endpush @push('script-page') <script src="{{ asset('js/bootstrap-toggle.js') }}"></script> <script>
$('document').ready(function () { $('.toggleswitch').bootstrapToggle(); $("fieldset[id^='demo'] .stars").click(function () { $(this).attr("checked"); }); });
$(document).ready(function () { var d_id = $('#department_id').val(); getDesignation(d_id); });
$(document).on('change', 'select[name=department]', function () { var department_id = $(this).val(); getDesignation(department_id); });
function getDesignation(did) { $.ajax({ url: '{{route('employee.json')}}', type: 'POST', data: { "department_id": did, "_token": "{{ csrf_token() }}", }, success: function (data) { $('#designation_id').empty(); $('#designation_id').append('<option value="">{{__('Select Designation')}}</option>'); $.each(data, function (key, value) { $('#designation_id').append('<option value="' + key + '">' + value + '</option>'); }); } }); } </script> @endpush
@section('breadcrumb') <li class="breadcrumb-item"><a href="{{route('dashboard')}}">{{__('Dashboard')}}</a></li> <li class="breadcrumb-item">{{__('Indicator')}}</li> @endsection @section('action-btn') <div class="float-end"> @can('create indicator') <a href="#" data-size="lg" data-url="{{ route('indicator.create') }}" data-ajax-popup="true" data-bs-toggle="tooltip" title="{{__('Create')}}" data-title="{{__('Create New Indicator')}}" class="btn btn-sm btn-primary"> <i class="ti ti-plus"></i> </a> @endcan </div> @endsection
@section('content') <div class="row"> <div class="col-md-12"> <div class="card"> <div class="card-body table-border-style"> <div class="table-responsive"> <table class="table datatable"> <thead> <tr> <th>{{__('Branch')}}</th> <th>{{__('Department')}}</th> <th>{{__('Designation')}}</th> <th>{{__('Overall Rating')}}</th> <th>{{__('Added By')}}</th> <th>{{__('Created At')}}</th> @if( Gate::check('edit indicator') ||Gate::check('delete indicator') ||Gate::check('show indicator')) <th width="200px">{{__('Action')}}</th> @endif </tr> </thead> <tbody class="font-style">
@foreach ($indicators as $indicator)
@php if(!empty($indicator->rating)){ $rating = json_decode($indicator->rating,true); if(!empty($rating)){ $starsum = array_sum($rating); $overallrating = $starsum/count($rating); }else{ $overallrating = 0; }
} else{ $overallrating = 0; } @endphp <tr> <td>{{ !empty($indicator->branches)?$indicator->branches->name:'' }}</td> <td>{{ !empty($indicator->departments)?$indicator->departments->name:'' }}</td> <td>{{ !empty($indicator->designations)?$indicator->designations->name:'' }}</td> <td>
@for($i=1; $i<=5; $i++) @if($overallrating < $i) @if(is_float($overallrating) && (round($overallrating) == $i)) <i class="text-warning fas fa-star-half-alt"></i> @else <i class="fas fa-star"></i> @endif @else <i class="text-warning fas fa-star"></i> @endif @endfor <span class="theme-text-color">({{number_format($overallrating,1)}})</span> </td>
<td>{{ !empty($indicator->user)?$indicator->user->name:'' }}</td> <td>{{ \Auth::user()->dateFormat($indicator->created_at) }}</td> @if( Gate::check('edit indicator') ||Gate::check('delete indicator') || Gate::check('show indicator')) <td> @can('show indicator') <div class="action-btn bg-info ms-2"> <a href="#" data-url="{{ route('indicator.show',$indicator->id) }}" data-size="lg" data-ajax-popup="true" data-title="{{__('Indicator Detail')}}" class="mx-3 btn btn-sm align-items-center" data-bs-toggle="tooltip" title="{{__('View')}}" data-original-title="{{__('View Detail')}}"> <i class="ti ti-eye text-white"></i></a> </div> @endcan @can('edit indicator') <div class="action-btn bg-primary ms-2"> <a href="#" data-url="{{ route('indicator.edit',$indicator->id) }}" data-size="lg" data-ajax-popup="true" data-title="{{__('Edit Indicator')}}" class="mx-3 btn btn-sm align-items-center" data-bs-toggle="tooltip" title="{{__('Edit')}}" data-original-title="{{__('Edit')}}"> <i class="ti ti-pencil text-white"></i></a> </div> @endcan @can('delete indicator') <div class="action-btn bg-danger ms-2"> {!! Form::open(['method' => 'DELETE', 'route' => ['indicator.destroy', $indicator->id],'id'=>'delete-form-'.$indicator->id]) !!}
<a href="#" class="mx-3 btn btn-sm align-items-center bs-pass-para" data-bs-toggle="tooltip" title="{{__('Delete')}}" data-confirm="{{__('Are You Sure?').'|'.__('This action can not be undone. Do you want to continue?')}}" data-confirm-yes="document.getElementById('delete-form-{{$indicator->id}}').submit();"> <i class="ti ti-trash text-white"></i></a> {!! Form::close() !!} </div> @endcan </td> @endif </tr> @endforeach </tbody> </table> </div> </div> </div> </div> </div> @endsection
|