@extends('layouts.dashboard')
@section('page_heading','Tables')
@section('section')
@section ('table_panel_title','Regular Table')
@section ('table_panel_body')
@include('widgets.table', array('class'=>''))
@endsection
@include('widgets.panel', array('header'=>true, 'as'=>'table'))
@section ('btable_panel_title','Bordered Table')
@section ('btable_panel_body')
@include('widgets.table', array('class'=>'table-bordered'))
@endsection
@include('widgets.panel', array('header'=>true, 'as'=>'btable'))
@section ('stable_panel_title','Striped Table')
@section ('stable_panel_body')
@include('widgets.table', array('class'=>'table-striped'))
@endsection
@include('widgets.panel', array('header'=>true, 'as'=>'stable'))
@section ('htable_panel_title','Hover Table')
@section ('htable_panel_body')
@include('widgets.table', array('class'=>'table-hover'))
@endsection
@include('widgets.panel', array('header'=>true, 'as'=>'htable'))
@section ('ctable_panel_title','Condensed Table')
@section ('ctable_panel_body')
@include('widgets.table', array('class'=>'table-condensed'))
@endsection
@include('widgets.panel', array('header'=>true, 'as'=>'ctable'))
@section ('atable_panel_title','Condensed, Bordered, Striped Table')
@section ('atable_panel_body')
@include('widgets.table', array('class'=>'table-condensed table-bordered table-striped'))
@endsection
@include('widgets.panel', array('header'=>true, 'as'=>'atable'))
@section ('cotable_panel_title','Coloured Table')
@section ('cotable_panel_body')
| Name |
Email |
Address |
| John |
john@gmail.com |
London, UK |
| Wayne |
wayne@gmail.com |
Manchester, UK |
| Andy |
andy@gmail.com |
Merseyside, UK |
| Danny |
danny@gmail.com |
Middlesborough, UK |
| Frank |
frank@gmail.com |
Southampton, UK |
| Scott |
scott@gmail.com |
Newcastle, UK |
| Rickie |
rickie@gmail.com |
Burnley, UK |
@endsection
@include('widgets.panel', array('header'=>true, 'as'=>'cotable'))
@stop