{"id":22702170,"url":"https://github.com/atnic/laravel-light-bootstrap-dashboard","last_synced_at":"2025-04-13T07:56:41.788Z","repository":{"id":62489291,"uuid":"105358725","full_name":"Atnic/laravel-light-bootstrap-dashboard","owner":"Atnic","description":"Laravel Package for integrating Light Bootstrap Dashboard template and this package","archived":false,"fork":false,"pushed_at":"2018-04-19T03:13:13.000Z","size":2584,"stargazers_count":4,"open_issues_count":0,"forks_count":3,"subscribers_count":7,"default_branch":"develop","last_synced_at":"2025-04-13T07:56:34.019Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"CSS","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/Atnic.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2017-09-30T09:22:56.000Z","updated_at":"2018-11-24T21:30:43.000Z","dependencies_parsed_at":"2022-11-02T11:16:08.790Z","dependency_job_id":null,"html_url":"https://github.com/Atnic/laravel-light-bootstrap-dashboard","commit_stats":null,"previous_names":[],"tags_count":4,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Atnic%2Flaravel-light-bootstrap-dashboard","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Atnic%2Flaravel-light-bootstrap-dashboard/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Atnic%2Flaravel-light-bootstrap-dashboard/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Atnic%2Flaravel-light-bootstrap-dashboard/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Atnic","download_url":"https://codeload.github.com/Atnic/laravel-light-bootstrap-dashboard/tar.gz/refs/heads/develop","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248681488,"owners_count":21144700,"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","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":[],"created_at":"2024-12-10T07:12:26.540Z","updated_at":"2025-04-13T07:56:41.761Z","avatar_url":"https://github.com/Atnic.png","language":"CSS","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Laravel Light Bootstrap Dashboard\nLaravel Package for integrating Light Bootstrap Dashboard template and this package is Laravel Mix friendly. Currently this package can be integrated easily only on fresh installation.\n\n# Installation\n```bash\ncomposer require atnic/laravel-light-bootstrap-dashboard\n```\nIf you are using Laravel 5.5 above skip this step. Add this line on ```config/app.php```, on  ```providers```\n```php\n'providers' =\u003e [\n  ...\n  Atnic\\LightBootstrapDashboard\\Providers\\AppServiceProvider::class,\n  ...\n]\n```\nAnd then run,\n```bash\nphp artisan make:light-bootstrap-dashboard\n```\nLet's see what we've install. First, make sure that you already ran ```php artisan migrate``` command, then do\n```bash\nphp artisan serve\n```\nViola! You've running a Laravel site using Light Bootstrap Dashboard.\n\n![home](https://user-images.githubusercontent.com/14815819/33922278-4aeb4050-dffc-11e7-8228-9a1e0077c868.png)\n\n![login](https://user-images.githubusercontent.com/14815819/33922280-4b6d845c-dffc-11e7-9c43-f3130f8e5ed4.png)\n\n![register](https://user-images.githubusercontent.com/14815819/33922279-4b2a1c4e-dffc-11e7-9730-980aaa47ca9c.png)\n\nFor more information on command\n```bash\nphp artisan make:light-bootstrap-dashboard --help\n```\n\n# Usage\nThis package provides view for auth and app. Take a look at ```resources/views/layouts/app.blade.php```.\n\nIn this file you can extends global section like menu.\n\nTo extends menu add this in ```app.blade.php```\n```blade\n@section('sidebar-menu')\n\u003cul class=\"nav\"\u003e\n  \u003cli class=\"active\"\u003e\n    \u003ca class=\"nav-link\" href=\"{{ route('home') }}\"\u003e\n      \u003ci class=\"pe-7s-home\"\u003e\u003c/i\u003e\n      \u003cp\u003eHome\u003c/p\u003e\n    \u003c/a\u003e\n  \u003c/li\u003e\n\u003c/ul\u003e\n@endsection\n```\n\nThis package give you free of choice to use any Laravel Package for Menu. We recommend [spatie/laravel-menu](https://github.com/spatie/laravel-menu) or [lavary/laravel-menu](https://github.com/lavary/laravel-menu).\n\nAny new created page should extends this view.\n```blade\n@extends('layouts.app')\n\n// Your blade here\n```\n\n# Configuration and Views Customization\n## Config\nTo publish this package config to your app config run\n```bash\nphp artisan vendor:publish --provider=\"Atnic\\LightBootstrapDashboard\\Providers\\AppServiceProvider\" --tag=\"config\"\n```\n## Views\nTo publish this package views so you can customize on your own run\n```bash\nphp artisan vendor:publish --provider=\"Atnic\\LightBootstrapDashboard\\Providers\\AppServiceProvider\" --tag=\"views\"\n```\n\n# Next Step\nFirst of all, you should understand how to use [Laravel Mix](https://laravel.com/docs/5.4/mix).\n\nLight Bootstrap Dashboard need some package on npm. First you need to run\n```bash\nnpm install\n```\n\nInstall Light Bootstrap Dashboard needed package from npm\n```bash\nnpm install --save-dev animate.css bootstrap bootstrap-notify bootstrap-select bootstrap-switch chartist flatui-radiocheck font-awesome popper.js pixeden-stroke-7-icon\n```\n\nRun Laravel Mix command\n```bash\nnpm run development\n```\nor use ```production``` minimize output\n```bash\nnpm run production\n```\n\nThen have a good look on these files\n- ```webpack.mix.js```\n- ```resources/assets/js/light-bootstrap-dashboard.js```\n- ```resources/assets/js/auth.js```\n- ```resources/assets/sass/light-bootstrap-dashboard.scss```\n- ```resources/assets/sass/auth.scss```\n\nHappy experimenting!\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fatnic%2Flaravel-light-bootstrap-dashboard","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fatnic%2Flaravel-light-bootstrap-dashboard","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fatnic%2Flaravel-light-bootstrap-dashboard/lists"}