feat: install and scaffold Tablar theme

This commit is contained in:
2026-05-01 11:49:20 -04:00
parent 9108b6bab6
commit bd52e27f76
170 changed files with 1046 additions and 375 deletions
+1 -1
View File
@@ -7,7 +7,7 @@ use Illuminate\Routing\Controller as BaseController;
use Illuminate\Foundation\Validation\ValidatesRequests;
use Illuminate\Foundation\Auth\Access\AuthorizesRequests;
class Controller extends BaseController
class Controller extends \Illuminate\Routing\Controller
{
use AuthorizesRequests, DispatchesJobs, ValidatesRequests;
}
+2 -1
View File
@@ -16,7 +16,8 @@
"laravel/tinker": "^2.9",
"laravel/ui": "^4.2",
"socialiteproviders/manager": "^4.9",
"spatie/laravel-pdf": "^2.8"
"spatie/laravel-pdf": "^2.8",
"takielias/tablar": "^13.02"
},
"require-dev": {
"barryvdh/laravel-debugbar": "^3.8",
Generated
+65 -1
View File
@@ -4,7 +4,7 @@
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
"This file is @generated automatically"
],
"content-hash": "6a8c1dbed78b92e966ff11684e8bb902",
"content-hash": "9f3b5396da1f090c9cab4f086f23f776",
"packages": [
{
"name": "barryvdh/laravel-snappy",
@@ -9312,6 +9312,70 @@
],
"time": "2026-03-30T13:44:50+00:00"
},
{
"name": "takielias/tablar",
"version": "13.02",
"source": {
"type": "git",
"url": "https://github.com/takielias/tablar.git",
"reference": "bb38f4f12482a41297ca5f19667cb1fdc6d5e0ef"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/takielias/tablar/zipball/bb38f4f12482a41297ca5f19667cb1fdc6d5e0ef",
"reference": "bb38f4f12482a41297ca5f19667cb1fdc6d5e0ef",
"shasum": ""
},
"require": {
"illuminate/support": ">=10.0"
},
"conflict": {
"laravel/breeze": "*"
},
"require-dev": {
"orchestra/testbench": ">=9.0",
"phpunit/phpunit": ">=10.0"
},
"type": "library",
"extra": {
"laravel": {
"providers": [
"TakiElias\\Tablar\\TablarServiceProvider"
]
},
"branch-alias": {
"dev-master": "1.0-dev"
}
},
"autoload": {
"psr-4": {
"TakiElias\\Tablar\\": "src/"
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
"name": "Taki Elias",
"email": "taki.elias@gmail.com"
}
],
"description": "Tablar: A Laravel Dashboard Preset Featuring Dark Mode and Dynamic Menu Generation for Effortless Navigation and Fast Development.",
"keywords": [
"bootstrap",
"laravel",
"preset",
"tabler",
"vite"
],
"support": {
"issues": "https://github.com/takielias/tablar/issues",
"source": "https://github.com/takielias/tablar/tree/13.02"
},
"time": "2026-03-26T09:58:14+00:00"
},
{
"name": "thecodingmachine/safe",
"version": "v3.4.0",
+245
View File
@@ -0,0 +1,245 @@
<?php
return [
/*
|--------------------------------------------------------------------------
| Title
|--------------------------------------------------------------------------
| Here you can change the default title of your admin panel.
|
*/
'title' => 'Tablar',
'title_prefix' => '',
'title_postfix' => '',
'bottom_title' => 'Tablar',
'current_version' => 'v11.11',
/*
|--------------------------------------------------------------------------
| Admin Panel Logo
|--------------------------------------------------------------------------
|
| Here you can change the logo of your admin panel.
|
*/
'logo' => '<b>Tab</b>LAR',
'logo_img_alt' => 'Admin Logo',
/*
|--------------------------------------------------------------------------
| Authentication Logo
|--------------------------------------------------------------------------
|
| Here you can set up an alternative logo to use on your login and register
| screens. When disabled, the admin panel logo will be used instead.
|
*/
'auth_logo' => [
'enabled' => false,
'img' => [
'path' => 'assets/tablar-logo.png',
'alt' => 'Auth Logo',
'class' => '',
'width' => 50,
'height' => 50,
],
],
/*
*
* Default path is 'resources/views/vendor/tablar' as null. Set your custom path here If you need.
*/
'views_path' => null,
/*
|--------------------------------------------------------------------------
| Layout
|--------------------------------------------------------------------------
| Here we change the layout of your admin panel.
|
| For detailed instructions you can look at the layout section here:
|
*/
'layout' => 'horizontal',
//boxed, combo, condensed, fluid, fluid-vertical, horizontal, navbar-overlap, navbar-sticky, rtl, vertical, vertical-right, vertical-transparent
'layout_light_sidebar' => null,
'layout_light_topbar' => true,
'layout_enable_top_header' => false,
/*
|--------------------------------------------------------------------------
| Sticky Navbar for Top Nav
|--------------------------------------------------------------------------
|
| Here you can enable/disable the sticky functionality of Top Navigation Bar.
|
| For detailed instructions, you can look at the Top Navigation Bar classes here:
|
*/
'sticky_top_nav_bar' => false,
/*
|--------------------------------------------------------------------------
| Admin Panel Classes
|--------------------------------------------------------------------------
|
| Here you can change the look and behavior of the admin panel.
|
| For detailed instructions, you can look at the admin panel classes here:
|
*/
'classes_body' => '',
/*
|--------------------------------------------------------------------------
| URLs
|--------------------------------------------------------------------------
|
| Here we can modify the url settings of the admin panel.
|
| For detailed instructions, you can look at the urls section here:
|
*/
'use_route_url' => true,
'dashboard_url' => 'home',
'logout_url' => 'logout',
'login_url' => 'login',
'register_url' => 'register',
'password_reset_url' => 'password.request',
'password_email_url' => 'password.email',
'profile_url' => false,
'setting_url' => false,
/*
|--------------------------------------------------------------------------
| Display Alert
|--------------------------------------------------------------------------
|
| Display Alert Visibility.
|
*/
'display_alert' => false,
/*
|--------------------------------------------------------------------------
| Menu Items
|--------------------------------------------------------------------------
|
| Here we can modify the sidebar/top navigation of the admin panel.
|
| For detailed instructions you can look here:
|
*/
'menu' => [
// Navbar items:
[
'text' => 'Home',
'icon' => 'ti ti-home',
'url' => 'home'
],
[
'text' => 'Support 1',
'url' => '#',
'icon' => 'ti ti-help',
'active' => ['support1'],
'submenu' => [
[
'text' => 'Ticket',
'url' => 'support1',
'icon' => 'ti ti-article',
]
],
],
[
'text' => 'Support 2',
'url' => '#',
'icon' => 'ti ti-help',
'active' => ['support2'],
'submenu' => [
[
'text' => 'Ticket',
'url' => 'support2',
'icon' => 'ti ti-article',
]
],
],
[
'text' => 'Support 3',
'url' => '#',
'icon' => 'ti ti-help',
'active' => ['support3'],
'submenu' => [
[
'text' => 'Ticket',
'url' => 'support3',
'icon' => 'ti ti-article',
]
],
],
],
/*
|--------------------------------------------------------------------------
| Menu Filters
|--------------------------------------------------------------------------
|
| Here we can modify the menu filters of the admin panel.
|
| For detailed instructions you can look the menu filters section here:
|
*/
'filters' => [
TakiElias\Tablar\Menu\Filters\GateFilter::class,
TakiElias\Tablar\Menu\Filters\HrefFilter::class,
TakiElias\Tablar\Menu\Filters\SearchFilter::class,
TakiElias\Tablar\Menu\Filters\ActiveFilter::class,
TakiElias\Tablar\Menu\Filters\ClassesFilter::class,
TakiElias\Tablar\Menu\Filters\LangFilter::class,
TakiElias\Tablar\Menu\Filters\DataFilter::class,
],
/*
|--------------------------------------------------------------------------
| Vite
|--------------------------------------------------------------------------
|
| Here we can enable the Vite support.
|
| For detailed instructions you can look the Vite here:
| https://laravel-vite.dev
|
*/
'vite' => true,
/*
|--------------------------------------------------------------------------
| Livewire
|--------------------------------------------------------------------------
|
| Here we can enable the Livewire support.
|
| For detailed instructions you can look the livewire here:
| https://livewire.laravel.com
|
*/
'livewire' => false,
];
+47 -19
View File
@@ -1,21 +1,49 @@
{
"private": true,
"scripts": {
"dev": "npm run development",
"development": "cross-env NODE_ENV=development node_modules/webpack/bin/webpack.js --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"watch": "cross-env NODE_ENV=development node_modules/webpack/bin/webpack.js --watch --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"watch-poll": "npm run watch -- --watch-poll",
"hot": "cross-env NODE_ENV=development node_modules/webpack-dev-server/bin/webpack-dev-server.js --inline --hot --config=node_modules/laravel-mix/setup/webpack.config.js",
"prod": "npm run production",
"production": "cross-env NODE_ENV=production node_modules/webpack/bin/webpack.js --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js"
},
"devDependencies": {
"axios": "^0.15.3",
"bootstrap-sass": "^3.3.7",
"cross-env": "^3.2.3",
"jquery": "^3.1.1",
"laravel-mix": "0.*",
"lodash": "^4.17.4",
"vue": "^2.1.10"
}
"private": true,
"scripts": {
"dev": "npm run development",
"development": "cross-env NODE_ENV=development node_modules/webpack/bin/webpack.js --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"watch": "cross-env NODE_ENV=development node_modules/webpack/bin/webpack.js --watch --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"watch-poll": "npm run watch -- --watch-poll",
"hot": "cross-env NODE_ENV=development node_modules/webpack-dev-server/bin/webpack-dev-server.js --inline --hot --config=node_modules/laravel-mix/setup/webpack.config.js",
"prod": "npm run production",
"production": "cross-env NODE_ENV=production node_modules/webpack/bin/webpack.js --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js"
},
"devDependencies": {
"@melloware/coloris": "^0.25.0",
"@popperjs/core": "^2.11.8",
"@tabler/core": "1.4.0",
"@tabler/icons": "^3.35.0",
"@tabler/icons-webfont": "^3.35.0",
"apexcharts": "^3.54.1",
"autosize": "^6.0.1",
"axios": "^1.7.4",
"bootstrap": "5.3.8",
"bootstrap-sass": "^3.3.7",
"choices.js": "^11.1.0",
"countup.js": "^2.9.0",
"cross-env": "^3.2.3",
"dropzone": "^6.0.0-beta.2",
"fslightbox": "^3.7.4",
"fullcalendar": "^6.1.19",
"imask": "^7.6.1",
"jquery": "^3.1.1",
"jsvectormap": "^1.7.0",
"laravel-mix": "0.*",
"laravel-vite-plugin": "^1.0",
"list.js": "^2.3.1",
"litepicker": "^2.0.12",
"lodash": "^4.17.4",
"nouislider": "^15.8.1",
"plyr": "^3.8.3",
"sass": "~1.64.2",
"sass-loader": "^16.0.1",
"signature_pad": "^5.1.1",
"star-rating.js": "^4.3.1",
"tom-select": "^2.4.3",
"typed.js": "^2.1.0",
"vite": "^5.0.0",
"vite-plugin-static-copy": "~3.0.0",
"vue": "^2.1.10"
}
}
Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 52 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 44 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 34 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 44 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 72 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 78 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 23 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 23 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 38 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 26 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 33 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 33 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 29 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 36 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 54 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 19 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 81 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 38 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 31 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 31 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 23 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 26 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 26 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.1 KiB

Some files were not shown because too many files have changed in this diff Show More