sigd/resources/views/modules/setting/file-peraturan/index.blade.php

44 lines
1.6 KiB
PHP

@extends('layouts.master')
@section('content')
<div class="card shadow-sm">
<div class="card-header d-flex justify-content-between align-items-center">
<h5 class="mb-0 font-weight-bold">{{ @$title }}</h5>
<a href="{{ route($route.'.create') }}" class="btn btn-primary float-right">Upload</a>
</div>
<div class="card-body">
<div class="table-responsive">
<table class="table w-100"
data-search="true"
data-toggle="table"
data-pagination="true"
data-toolbar="#toolbar"
data-show-refresh="false"
data-url="{{route($route.'.grid')}}"
data-ajax-options='{"xhrFields": {"withCredentials": true}}'
data-sort-name="ids"
data-sort-order="desc"
data-page-size="10"
data-id-field="id"
id="grid-data">
<thead class="table-primary text-primary">
<tr>
<th data-width="150" data-field="action">#</th>
<th data-field="name">Judul</th>
<th data-field="file">File</th>
<th data-field="description">Keterangan</th>
</tr>
</thead>
<tbody></tbody>
</table>
</div>
</div>
</div>
@endsection
@section('js')
@endsection