{"id":16462382,"url":"https://github.com/syntaxlexx/laravel-theme-templates-galore","last_synced_at":"2026-05-17T01:44:47.299Z","repository":{"id":90395210,"uuid":"119767007","full_name":"syntaxlexx/laravel-theme-templates-galore","owner":"syntaxlexx","description":"Got that template or theme you wish to convert to Laravel's blade templating engine? Or a ready-made one? We've got you!","archived":false,"fork":false,"pushed_at":"2018-06-06T07:33:03.000Z","size":17872,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-07-15T12:41:01.876Z","etag":null,"topics":["blade","blade-template","boilerplate","boilerplate-application","html5","laravel","php","template","theme"],"latest_commit_sha":null,"homepage":null,"language":"HTML","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/syntaxlexx.png","metadata":{"files":{"readme":"readme.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2018-02-01T01:41:13.000Z","updated_at":"2018-11-01T21:52:33.000Z","dependencies_parsed_at":null,"dependency_job_id":"5e3df838-9edf-4c8e-ba4f-e5930a9dca2d","html_url":"https://github.com/syntaxlexx/laravel-theme-templates-galore","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/syntaxlexx/laravel-theme-templates-galore","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/syntaxlexx%2Flaravel-theme-templates-galore","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/syntaxlexx%2Flaravel-theme-templates-galore/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/syntaxlexx%2Flaravel-theme-templates-galore/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/syntaxlexx%2Flaravel-theme-templates-galore/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/syntaxlexx","download_url":"https://codeload.github.com/syntaxlexx/laravel-theme-templates-galore/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/syntaxlexx%2Flaravel-theme-templates-galore/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33124933,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-16T18:38:32.183Z","status":"ssl_error","status_checked_at":"2026-05-16T18:38:29.903Z","response_time":115,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["blade","blade-template","boilerplate","boilerplate-application","html5","laravel","php","template","theme"],"created_at":"2024-10-11T11:11:07.836Z","updated_at":"2026-05-17T01:44:47.278Z","avatar_url":"https://github.com/syntaxlexx.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Laravel Theme Templates Galore\n\nTired of starting laying out you blade templates from scrach just to get working with that template you love?\nOr are you too busy to decide on an admin dashboard/theme and just want to get started with a pre-made complete blade template?\nIf you're like me, or like most of us, we've got you covered!\n\n## Template Directory Structure\n\n```php\n.\n├── app\n├── bootstrap\n├── config\n├── public\n|   ├── css\n|   ├── js\n|   ├── font\n|   └── templates # The templates assets directory\n|       ├── ace # Theme 1 assets parent directory\n|           └── assets # Theme 1 assets folder\n|               ├── css # Theme 1 css folder\n|               ├── js # Theme 1 js folder\n|               ├── font # Theme 1 fonts folder\n|               ├── sass # Theme 1 sass folder\n|               └── images # Theme 1 images/img folder\n|       ├── foo # Theme foo assets parent directory\n|       └── bar # Theme n assets parent directory\n├── resources\n|   ├── assets\n|   ├── lang\n|   └── views\n|       ├── welcome.blade.php\n|       └── templates # The templates directory\n|           ├── ace # Theme 1 parent folder\n|               ├── layouts # Theme 1 layouts folder\n|                   ├── main.blade.php # Theme 1 main layout file\n|                   ├── auth.blade.php # Theme 1 auth layout file for authentication views\n|                   └── partials # Theme 1 folder\n|                       ├── header.blade.php # Contains the nav + header elements\n|                       ├── sidebar.blade.php # Contains the sidebar elements\n|                       ├── breadcrumb.blade.php # Contains the breadcrumb elements\n|                       ├── footer.blade.php # Contains the footer elements\n|                       └──  switcher.blade.php # Contains the theme preference switcher elements.\n|               ├── index.blade.php # Theme 1 index view\n|               ├── blank.blade.php # Theme 1 blank view\n|               ├── widgets.blade.php # Theme 1 widget view\n|               └── foobar.blade.php # Theme 1 foobar view\n|           ├── foo # Theme 2 parent folder\n|           └── bar # Theme n parent folder\n├── storage\n├── vendor\n└── .env.example\n\n```\n\nAll template's main layout files follow this convention:\n```php\n// main.blade.php\n\n\u003c!DOCTYPE html\u003e\n\u003chtml lang=\"en\"\u003e\n\t\u003chead\u003e\n        \u003cmeta http-equiv=\"X-UA-Compatible\" content=\"IE=edge,chrome=1\" /\u003e\n        \u003cmeta charset=\"utf-8\" /\u003e\n        \u003ctitle\u003e{{ isset($title) ? $title : '' }} | {{ $site_name }}\u003c/title\u003e\n        \n        \u003cmeta name=\"description\" content=\"Laravel Theme Templates Galore\" /\u003e\n        \u003cmeta name=\"viewport\" content=\"width=device-width, initial-scale=1.0, maximum-scale=1.0\" /\u003e\n        \n        // basic stylesheets required by all pages go here\n\n        \u003c!-- page specific plugin styles section is yielded here --\u003e\n        @yield('pre-styles')\n        \n        \u003c!-- text fonts go here --\u003e\n        // font awesome, Google fonts, dashicons, icomoon, material design icons, you name it!\n\n        \u003c!--[if lte IE 8]\u003e\n\t\t\u003cscript src=\"/js/html5shiv.min.js\"\u003e\u003c/script\u003e\n\t\t\u003cscript src=\"/js/respond.min.js\"\u003e\u003c/script\u003e\n\t\t\u003c![endif]--\u003e\n\n        \u003c!-- custom stylesheet goes here --\u003e\n        {{ Html::style('/templates/my-chosen-template/assets/css/custom.css') }}\n\n        // yield additional styles\n        @yield('styles')\n    \u003c/head\u003e\n\n    \u003cbody\u003e\n        // include header file here; depends on the architecture of each individual template\n\n        // content area\n        @yield('content')\n\n        // include footer file here; depends on the architecture of each individual template\n\n        \u003c!-- basic scripts go here--\u003e\n        {{ Html::script('templates/my-chosen-template/assets/js/jquery.js') }}\n\n        \u003c!-- page specific plugin scripts --\u003e\n\t\t// yield pre-scripts\n        @yield('pre-scripts')\n\n        // load main initialization script file here\n        \n        \u003c!-- Now yield inline scripts related to this page --\u003e\n        // yield additional scripts\n        @yield('scripts')\n\n    \u003c/body\u003e\n\n```\n\n## Getting Started\nYou may go through the themes presented here at [Laravel Theme Templates Galore](https://themesgalore.acelords.space). Once satisfied with your selection, you can download the zip file from the links provided in the website and wallah! Peace of mind! You get to concentrate on what really matters!\n\n## Dependencies\nOn top of the default Laravel fresh install setup, this package requires an additional package; [Laravel Collective - HTML](https://github.com/LaravelCollective/html) which you can simply add by running the composer command below. \n```php\ncomposer require laravelcollective/html\n```\nThat is all.\n\n## Contributing\n\nThank you for considering contributing to templates! You can send a zip file to [Lexx YungCarter](mailto:lexxyungcarter@gmail.com) to add to the existing blade-ready templates.\n\n## Security Vulnerabilities\n\nIf you discover a security vulnerability within any of the theme files, please send an e-mail to [Lexx YungCarter](mailto:lexxyungcarter@gmail.com). All security vulnerabilities will be promptly addressed.\n\n## License\n\nJust like Laravel, this project is open-sourced software licensed under the [MIT license](http://opensource.org/licenses/MIT).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsyntaxlexx%2Flaravel-theme-templates-galore","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsyntaxlexx%2Flaravel-theme-templates-galore","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsyntaxlexx%2Flaravel-theme-templates-galore/lists"}