Last active
October 15, 2018 15:26
-
-
Save ahmadshobirin/72b1d9ed1c8ee738c17877c05c8fb70c to your computer and use it in GitHub Desktop.
html kursus online
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@extends('index') | |
@section('contentheader_title','Master User') | |
@section('customcss') | |
<link rel="stylesheet" href="{{ asset('/plugins/datatables/dataTables.bootstrap.css') }}"> | |
<link rel="stylesheet" href="{{ asset('/plugins/datatables/jquery.dataTables.min.css') }}"> | |
@endsection | |
@section('content') | |
<!-- Default box --> | |
<div class="box box-primary"> | |
<div class="box-body"> | |
<div class="table"> | |
<table class="table table-striped table-hover table-responsive" id="table"> | |
<thead> | |
<tr> | |
<th>No.</th> | |
<th>Nama</th> | |
<th>Email</th> | |
</tr> | |
</thead> | |
</table> | |
</div> | |
</div> | |
<!-- /.box-body --> | |
@endsection |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment