| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- <?php $getStatus = \App\Model\Privillage\Role::where('id',Auth::user()->role_id)->value('akses'); ?>
- @extends('dev.core.using')
- @section('content')
- @include('templates.SPP.RT.core.detail')
- @include('templates.SPP.RT.core.edit')
- @include('templates.SPP.RT.import.import')
- @include('templates.SPP.RT.export.export-search')
- @include('templates.SPP.RT.export.preview-search')
- @include('templates.SPP.RT.export.print-search')
- @include('templates.helpers.delete')
- @include('templates.SPP.RT.dev.data')
- <style>
- #example_filter{position: absolute; right: 20px;}
- .dataTables_wrapper{overflow-y: hidden;}
- .dataTables_filter{position: absolute; right: 13px;}
- .dataTables_length{position: sticky; left: 10px;}
- .previous {color: #87a5d8 !important; border:1px solid #87a5d8; border-radius: 20px; padding:3px;}
- .previous:hover{color: #fff !important; border:1px solid #fff;}
- .next{color: #87a5d8 !important; border:1px solid #87a5d8; border-radius: 20px; padding:3px;}
- .next:hover{color: #fff !important; border:1px solid #fff;}
- .processing{color: red !important;}
- </style>
- <br>
- <br>
- <div style="margin-bottom: 20px;">
- <div class="card shadow" style="border:1px solid #dedede;">
- <div class="card-header bg-transparent">
- <div class="row align-items-center">
- <div class="col">
- <center>
- <h4 class="mb-0"><i class="fas fa-building"></i> {{strtoupper($getStatus)}} {{$getUptName}}</h4>
- </center>
- </div>
- </div>
- </div>
- </div>
- </div>
- @include('templates.helpers.SPP.RT.maps')
- <div class="container" style="margin-top: 40px;">
- <br>
- @if($getStatus == 'administrator')
- @include('templates.helpers.SPP.RT.chart')
- @else
- @include('templates.helpers.SPP.RT.chart-no-admin')
- @endif
- </div>
- <div class="row mt-5">
- <div class="col-md-12 mb-4 mb-xl-0" style="margin-top: 10px;">
- <div class="">
- @include('templates.SPP.RT.core.table')
- </div>
- </div>
-
- </div>
- @include('templates.helpers.SPP.RT.js')
- @endsection
|