PATH:
home
/
centosnipponia
/
public_html
/
ts
/
resources
/
views
/
pages
@extends('layouts.main') @section('title', 'Table Bootstrap') @section('content') <!-- push external head elements to head --> @push('head') <link rel="stylesheet" href="{{ asset('plugins/datatables.net-bs4/css/dataTables.bootstrap4.min.css') }}"> @endpush <div class="container-fluid"> <div class="page-header"> <div class="row align-items-end"> <div class="col-lg-8"> <div class="page-header-title"> <i class="ik ik-credit-card bg-blue"></i> <div class="d-inline"> <h5>{{ __('Bootstrap Tables')}}</h5> <span>{{ __('lorem ipsum dolor sit amet, consectetur adipisicing elit')}}</span> </div> </div> </div> <div class="col-lg-4"> <nav class="breadcrumb-container" aria-label="breadcrumb"> <ol class="breadcrumb"> <li class="breadcrumb-item"> <a href="{{route('dashboard')}}"><i class="ik ik-home"></i></a> </li> <li class="breadcrumb-item"> <a href="#">{{ __('Tables')}}</a> </li> <li class="breadcrumb-item active" aria-current="page">{{ __('Bootstrap Tables')}}</li> </ol> </nav> </div> </div> </div> <div class="row"> <div class="col-md-12"> <div class="card"> <div class="card-header d-block"> <h3>{{ __('Basic Table')}}</h3> <span>use class <code>table</code> inside table element</span> </div> <div class="card-body p-0 table-border-style"> <div class="table-responsive"> <table class="table"> <thead> <tr> <th>#</th> <th>{{ __('First Name')}}</th> <th>{{ __('Last Name')}}</th> <th>{{ __('Username')}}</th> </tr> </thead> <tbody> <tr> <th scope="row">1</th> <td>Mark</td> <td>Otto</td> <td>@mdo</td> </tr> <tr> <th scope="row">2</th> <td>Jacob</td> <td>Thornton</td> <td>@fat</td> </tr> <tr> <th scope="row">3</th> <td>Larry</td> <td>the Bird</td> <td>@twitter</td> </tr> </tbody> </table> </div> </div> </div> <div class="card"> <div class="card-header d-block"> <h3>{{ __('Inverse Table')}}</h3> <span>use class <code>table-inverse</code> inside table element</span> </div> <div class="card-body p-0 table-border-style"> <div class="table-responsive"> <table class="table table-inverse"> <thead> <tr> <th>#</th> <th>{{ __('First Name')}}</th> <th>{{ __('Last Name')}}</th> <th>{{ __('Username')}}</th> </tr> </thead> <tbody> <tr> <th scope="row">1</th> <td>Mark</td> <td>Otto</td> <td>@mdo</td> </tr> <tr> <th scope="row">2</th> <td>Jacob</td> <td>Thornton</td> <td>@fat</td> </tr> <tr> <th scope="row">3</th> <td>Larry</td> <td>the Bird</td> <td>@twitter</td> </tr> </tbody> </table> </div> </div> </div> <div class="card"> <div class="card-header d-block"> <h3>{{ __('Hover Table')}}</h3> <span>use class <code>table-hover</code> inside table element</span> </div> <div class="card-body p-0 table-border-style"> <div class="table-responsive"> <table class="table table-hover"> <thead> <tr> <th>#</th> <th>{{ __('First Name')}}</th> <th>{{ __('Last Name')}}</th> <th>{{ __('Username')}}</th> </tr> </thead> <tbody> <tr> <th scope="row">1</th> <td>Mark</td> <td>Otto</td> <td>@mdo</td> </tr> <tr> <th scope="row">2</th> <td>Jacob</td> <td>Thornton</td> <td>@fat</td> </tr> <tr> <th scope="row">3</th> <td>Larry</td> <td>the Bird</td> <td>@twitter</td> </tr> </tbody> </table> </div> </div> </div> <div class="card"> <div class="card-header d-block"> <h3>{{ __('Contextual Classes')}}</h3> <span>For Make row Contextual add Contextual class like <code>.table-success</code> in <code> tr tag</code> and For cell add Contextual class in <code> td or th tag</code> . </span> </div> <div class="card-body p-0 table-border-style"> <div class="table-responsive"> <table class="table"> <thead> <tr> <th>#</th> <th>{{ __('First Name')}}</th> <th>{{ __('Last Name')}}</th> <th>{{ __('Username')}}</th> </tr> </thead> <tbody> <tr class="table-active"> <th scope="row">1</th> <td>Mark</td> <td>Otto</td> <td>@mdo</td> </tr> <tr> <th scope="row">2</th> <td>Jacob</td> <td>Thornton</td> <td>@fat</td> </tr> <tr class="table-success"> <th scope="row">3</th> <td>Larry</td> <td>the Bird</td> <td>@twitter</td> </tr> <tr> <th scope="row">4</th> <td>Larry</td> <td>the Bird</td> <td>@twitter</td> </tr> <tr class="table-warning"> <th scope="row">5</th> <td>Larry</td> <td>the Bird</td> <td>@twitter</td> </tr> <tr> <th scope="row">6</th> <td>Larry</td> <td>the Bird</td> <td>@twitter</td> </tr> <tr class="table-danger"> <th scope="row">7</th> <td>Larry</td> <td>the Bird</td> <td>@twitter</td> </tr> <tr> <th scope="row">8</th> <td>Larry</td> <td>the Bird</td> <td>@twitter</td> </tr> <tr class="table-info"> <th scope="row">9</th> <td>Larry</td> <td>the Bird</td> <td>@twitter</td> </tr> </tbody> </table> </div> </div> </div> <div class="card"> <div class="card-header d-block"> <h3>{{ __('Background Utilities')}}</h3> <span>Regular table background variants are not available with the inverse table, however, you may use <code>text or background utilities</code> to achieve similar styles.</span> </div> <div class="card-block p-0 table-border-style"> <div class="table-responsive"> <table class="table table-inverse"> <thead> <tr> <th>#</th> <th>{{ __('First Name')}}</th> <th>{{ __('Last Name')}}</th> <th>{{ __('Username')}}</th> </tr> </thead> <tbody> <tr class="bg-primary"> <th scope="row">1</th> <td>Mark</td> <td>Otto</td> <td>@mdo</td> </tr> <tr> <th scope="row">2</th> <td>Jacob</td> <td>Thornton</td> <td>@fat</td> </tr> <tr class="bg-success"> <th scope="row">3</th> <td>Larry</td> <td>the Bird</td> <td>@twitter</td> </tr> <tr> <th scope="row">4</th> <td>Larry</td> <td>the Bird</td> <td>@twitter</td> </tr> <tr class="bg-warning"> <th scope="row">5</th> <td>Larry</td> <td>the Bird</td> <td>@twitter</td> </tr> <tr> <th scope="row">6</th> <td>Larry</td> <td>the Bird</td> <td>@twitter</td> </tr> <tr class="bg-danger"> <th scope="row">7</th> <td>Larry</td> <td>the Bird</td> <td>@twitter</td> </tr> <tr> <th scope="row">8</th> <td>Larry</td> <td>the Bird</td> <td>@twitter</td> </tr> <tr class="bg-info"> <th scope="row">9</th> <td>Larry</td> <td>the Bird</td> <td>@twitter</td> </tr> </tbody> </table> </div> </div> </div> </div> </div> </div> <!-- push external js --> @push('script') <script src="{{ asset('plugins/datatables.net/js/jquery.dataTables.min.js') }}"></script> <script src="{{ asset('plugins/datatables.net-bs4/js/dataTables.bootstrap4.min.js') }}"></script> <script src="{{ asset('js/tables.js') }}"></script> @endpush @endsection
[+]
..
[-] calendar.blade.php
[edit]
[-] charts-amcharts.blade.php
[edit]
[-] charts-chartist.blade.php
[edit]
[-] charts-flot.blade.php
[edit]
[-] charts-knob.blade.php
[edit]
[-] dashboard.blade.php
[edit]
[-] datatable-editable.blade.php
[edit]
[-] form-addon.blade.php
[edit]
[-] form-advance.blade.php
[edit]
[-] form-components.blade.php
[edit]
[-] form-picker.blade.php
[edit]
[-] invoice.blade.php
[edit]
[-] layout-edit-item.blade.php
[edit]
[-] layouts.blade.php
[edit]
[-] navbar.blade.php
[edit]
[-] pricing.blade.php
[edit]
[-] profile.blade.php
[edit]
[-] project.blade.php
[edit]
[-] table-bootstrap.blade.php
[edit]
[-] table-datatable.blade.php
[edit]
[-] taskboard.blade.php
[edit]
[+]
ui
[-] view.blade.php
[edit]
[-] widget-chart.blade.php
[edit]
[-] widget-data.blade.php
[edit]
[-] widget-statistic.blade.php
[edit]
[-] widgets.blade.php
[edit]
[-] forgot-password.blade.php
[edit]
[-] register.blade.php
[edit]
[-] .htaccess.disabled
[edit]