62 lines
2.4 KiB
PHP
62 lines
2.4 KiB
PHP
@extends('layouts.master')
|
|
@section('page-css')
|
|
<link rel="stylesheet" media="screen, print" href="{{asset('assets/css/datagrid/datatables/datatables.bundle.css')}}">
|
|
<link rel="stylesheet" href="{{asset('assets/css/bootstrap-table.min.css')}}">
|
|
@endsection
|
|
@section('content')
|
|
<div class="subheader">
|
|
<h1 class="subheader-title">
|
|
<i class='subheader-icon fal fa-building'></i> Profile Sekolah
|
|
</h1>
|
|
</div>
|
|
<div class="row">
|
|
<div class="col-lg-12">
|
|
<div id="panel-4" class="panel">
|
|
<div class="panel-container show">
|
|
<div class="panel-content">
|
|
<div id="toolbar">
|
|
<button id="btn-add" class="btn btn-primary">
|
|
<i class="fal fa-plus"></i> Tambah Data
|
|
</button>
|
|
</div>
|
|
|
|
<table class="table table-bordered table-hover table-striped w-100"
|
|
data-search="true"
|
|
data-toggle="table"
|
|
data-pagination="true"
|
|
data-toolbar="#toolbar"
|
|
data-show-refresh="false"
|
|
data-sort-name="ids"
|
|
data-sort-order="desc"
|
|
data-page-size="10"
|
|
data-id-field="id"
|
|
id="grid-data">
|
|
<thead>
|
|
<tr class="table-success">
|
|
<th>#</th>
|
|
<th>No</th>
|
|
<th>NPSN</th>
|
|
<th>Nama Sekolah</th>
|
|
<th>Status Level</th>
|
|
<th>Tanggal Level</th>
|
|
<th>Penghargaan Terakhir</th>
|
|
<th>DOK Administrasi</th>
|
|
<th>Pemenuhan Kriteria</th>
|
|
<th>Jenis Usulan</th>
|
|
<th>Usulankan CSA</th>
|
|
<th>Perpanjangan CSA</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody></tbody>
|
|
</table>
|
|
<!-- datatable end -->
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
@endsection
|
|
@section('page-js')
|
|
<script src="{{asset('assets/js/datagrid/datatables/datatables.bundle.js')}}"></script>
|
|
<script src="{{asset('assets/js/bootstrap-table.min.js')}}"></script>
|
|
@endsection |