{"id":13825179,"url":"https://github.com/baorv/l5-tabler","last_synced_at":"2025-08-29T02:32:50.927Z","repository":{"id":57041704,"uuid":"127909179","full_name":"baorv/l5-tabler","owner":"baorv","description":"Tabler admin template for Laravel 5","archived":false,"fork":false,"pushed_at":"2019-03-04T05:23:52.000Z","size":308,"stargazers_count":26,"open_issues_count":1,"forks_count":4,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-08-16T20:46:02.725Z","etag":null,"topics":["admin","laravel","tabler","template"],"latest_commit_sha":null,"homepage":"https://tabler.io","language":"HTML","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/baorv.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2018-04-03T13:02:30.000Z","updated_at":"2021-09-06T17:29:08.000Z","dependencies_parsed_at":"2022-08-23T23:40:13.136Z","dependency_job_id":null,"html_url":"https://github.com/baorv/l5-tabler","commit_stats":null,"previous_names":[],"tags_count":5,"template":false,"template_full_name":null,"purl":"pkg:github/baorv/l5-tabler","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/baorv%2Fl5-tabler","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/baorv%2Fl5-tabler/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/baorv%2Fl5-tabler/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/baorv%2Fl5-tabler/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/baorv","download_url":"https://codeload.github.com/baorv/l5-tabler/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/baorv%2Fl5-tabler/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":272611910,"owners_count":24964385,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-08-29T02:00:10.610Z","response_time":87,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["admin","laravel","tabler","template"],"created_at":"2024-08-04T09:01:15.997Z","updated_at":"2025-08-29T02:32:50.884Z","avatar_url":"https://github.com/baorv.png","language":"HTML","funding_links":[],"categories":["HTML"],"sub_categories":[],"readme":"# l5-tabler\n\n![Tabler preview](preview.png)\n\nTabler admin template for Laravel 5\n\n## Installation\n\nRun composer for installing package:\n\n```bash\ncomposer require \"pingecom/l5-tabler\":\"~1.0.0\"\n```\n\nOr add package name to require section:\n\n```yaml\n...\nrequire: {\n    ...\n    \"pingecom/l5-tabler\":\"~1.0.0\"\n    ...\n}\n...\n```\n\nIf Laravel \u003c 5.5, Add a provider to the list of providers in `config/app.php`\n\n```php\n...\n\"providers\" =\u003e [\n    ...\n    '\\Pingecom\\Tabler\\Providers\\TablerServiceProvider',\n    ...\n]\n...\n```\n\nSetup the middleware for menu by create a new middleware named: **DefineMenu**\n\nYou can read more at: https://github.com/lavary/laravel-menu\n\n```php\n\u003c?php\n\nnamespace App\\Http\\Middleware;\n\nuse Closure;\nuse Lavary\\Menu\\Facade as Menu;\n\nclass DefineMenus\n{\n    public function handle($request, Closure $next)\n    {\n        Menu::make('primary', function ($menu) {\n            $menu-\u003eadd('Home');\n            $menu-\u003eadd('About', 'about');\n            $menu-\u003eadd('Services', 'services');\n            $menu-\u003eadd('Contact', 'contact');\n        });\n\n        return $next($request);\n    }\n}\n```\n\nAdd a middleware to the middleware list\n\n```php\nprotected $middlewareGroups = [\n    'web' =\u003e [\n        ...,\n        \\App\\Http\\Middleware\\DefineMenus::class,\n    ],\n    ...\n]\n```\n\nPublish all assets, views and others to continue.\n\n```php\nphp artisan vendor:publish --provider=\"Pingecom\\Tabler\\Providers\\TablerServiceProvider\" \n```\n\n## Usage\n\nCreate authentication pages\n\n```php\nphp artisan make:tabler \n```\n\nIn your view, you can extends from layout\n```blade\n@extends('tabler::layouts.main')\n@push('scripts')\n@endpush\n@push('styles')\n@endpush\n@section('content')\n@stop\n```\nTo use tabler plugins, such as: [charts](https://tabler.io/tabler/charts.html), [maps](https://tabler.io/tabler/maps.html). You can inject javascript and stylesheet to two [stacks](https://laravel.com/docs/5.7/blade#stacks)\n\n```blade\n@extends('tabler::layouts.main')\n@push('scripts')\n    \u003cscript src=\"{{ asset('admin/assets/plugins/charts-c3/plugin.js') }}\"\u003e\u003c/script\u003e\n    \u003cscript type=\"text/javascript\"\u003e\n        require(['c3', 'jquery'], function (c3, $) {\n            $(document).ready(function () {\n    \t        var chart = c3.generate({\n    \t            bindto: '#chart-employment',\n    \t            data: {\n    \t\t            ...\n    \t\t        }\n    \t\t    });\n    \t    });\n        });\n    \u003c/script\u003e\n@endpush\n@push('styles')\n    \u003clink href=\"{{ asset('admin/assets/plugins/charts-c3/plugin.css') }}\" rel=\"stylesheet\"/\u003e\n@endpush\n\n@section('content')\n    \u003cdiv class=\"my-3 my-md-5\"\u003e\n        \u003cdiv class=\"container\"\u003e\n            \u003cdiv class=\"page-header\"\u003e\n                \u003ch1 class=\"page-title\"\u003e\n                    Charts\n                \u003c/h1\u003e\n            \u003c/div\u003e\n            \u003cdiv class=\"row row-cards\"\u003e\n                \u003cdiv class=\"col-lg-6 col-xl-4\"\u003e\n                    \u003cdiv class=\"card\"\u003e\n                        \u003cdiv class=\"card-header\"\u003e\n                            \u003ch3 class=\"card-title\"\u003eEmployment Growth\u003c/h3\u003e\n                        \u003c/div\u003e\n                        \u003cdiv class=\"card-body\"\u003e\n                            \u003cdiv id=\"chart-employment\" style=\"height: 16rem\"\u003e\u003c/div\u003e\n                        \u003c/div\u003e\n                    \u003c/div\u003e\n                \u003c/div\u003e\n            \u003c/div\u003e\n        \u003c/div\u003e\n    \u003c/div\u003e\n@stop\t\n``` \n\n## Customization\n\nOpen `tabler.php` in `config/tabler.php`, you can customize some URL, logo, suffix\n\n```php\nreturn [\n    'suffix' =\u003e 'Tabler',\n    'logo' =\u003e 'https://tabler.github.io/tabler/demo/brand/tabler.svg',\n    'urls' =\u003e [\n        'logout' =\u003e 'logout',\n        'profile' =\u003e 'profile',\n        'settings' =\u003e 'settings',\n        'search' =\u003e 'search',\n        'homepage' =\u003e '/',\n        'login' =\u003e 'login',\n        'post-login' =\u003e 'login',\n        'forgot' =\u003e 'password/reset',\n        'register' =\u003e 'register',\n        'post-register' =\u003e 'register',\n        'post-email' =\u003e 'password/email',\n        'post-reset' =\u003e 'password/reset'\n    ],\n    'footer' =\u003e 'Copyright © 2018 Tabler. Theme by codecalm.net All rights reserved.',\n    'support' =\u003e [\n        'search' =\u003e false,\n        'footer-menu' =\u003e false,\n    ]\n];\n```\nCustomize views, open `resources/views/vendor/tabler` to customize\nCustomize assets, open `public/admin/assets`\n\n## Documentation\n\nFor full documentation, visit [tabler.github.io/tabler/docs](https://tabler.github.io/tabler/docs/index.html).\n\n## LICENSE\n\nThis project is licensed under the [MIT License](LICENSE).\n\n## Issues\n\nIf you have any issue, please [create new issue](https://github.com/roanvanbao/l5-tabler/issues/new)\n\n## Contributors\n\n## Todo\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbaorv%2Fl5-tabler","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbaorv%2Fl5-tabler","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbaorv%2Fl5-tabler/lists"}