index.blade.php
1.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
@extends('backend.home.index')
@push('title', $halaman->nama)
@push('header', $halaman->nama)
@push('tombol')
<a href="#tambah" class="btn btn-sm btn-primary tambah">
Tambah <i class="fa fa-plus-circle"></i>
</a>
@endpush
@section('content')
<div class="panel-container show container-fluid col">
<div class="panel-content">
<table id="datatable" class="table table-bordered table-hover table-striped w-100">
<thead class="bg-primary-600">
<tr>
<th class="text-center wid-10" tabindex="0" rowspan="1" colspan="1">Judul</th>
<th class="text-center wid-10" tabindex="0" rowspan="1" colspan="1">Konten</th>
<th class="text-center wid-10" tabindex="0" rowspan="1" colspan="1">Aksi</th>
</tr>
</thead>
</table>
</div>
</div>
@endsection
@push('js')
@include('backend.home.datatable-js')
<script type="text/javascript" src="{{ URL::asset('ojisatriani/'. $halaman->kode .'/jquery.js') }}"></script>
<script type="text/javascript" src="{{ URL::asset('ojisatriani/'. $halaman->kode .'/datatables.js') }}"></script>
@endpush
@push('css')
@include('backend.home.datatable-css')
@endpush