Tablar: A Laravel Dashboard Preset

Packages

September 14th, 2023

Tablar: A Laravel Dashboard Preset

The Laravel Tablar Admin Dashboard Package is a beautiful, feature-rich admin dashboard Template using Laravel, Tabler.io, and Vite. Using Tabler, you can access a free and open-source web application UI kit based on Bootstrap 5, with hundreds of responsive components and multiple layouts:

This package provides a beautiful starting point for dashboards and related components, helping you build a polished dashboard quickly. Key features of this package include:

  • Seamless integration with Laravel
  • Responsive design
  • Easily customizable components
  • Dynamic Menu Generation

This package also supports dark and light modes, a complimentary CRUD generator package, and more. Here's an example of how you might use the package's provided template:

@extends('tablar::page')
 
@section('content')
<!-- Page header -->
<div class="page-header d-print-none">
<div class="container-xl">
<div class="row g-2 align-items-center">
<div class="col">
<h2 class="page-title">
Empty page
</h2>
</div>
</div>
</div>
</div>
<!-- Page body -->
<div class="page-body">
<div class="container-xl">
@if(config('tablar','display_alert'))
@include('tablar::common.alert')
@endif
 
<!-- Page Content goes here -->
 
</div>
</div>
@endsection

This package has a demo you can experiment with at tablar.ebuz.xyz, which demonstrates a dashboard table, an alerts UI, a light/dark theme toggle, and more:

You can learn more about this package, get full installation instructions, and view the source code on GitHub.

Filed in:

Paul Redmond

Full stack web developer. Author of Lumen Programming Guide and Docker for PHP Developers.