├── LICENSE ├── README.md └── recipes ├── .gitkeep └── adminLTE └── Readme.md /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2016 Jad Joubran 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Laravel Angular Recipes 2 | Community recipes for [Laravel & Angular material starter](http://laravel-angular.io/) 3 | 4 | 5 | You have an awesome starter for building apps with Laravel & Angular (material). 6 | 7 | But we can't include all the possible solutions out of the box. 8 | 9 | This repository is where recipes from the community are being shared. These recipes often serve a particular use case that the community would love to share & get feedback for. [Github issue](https://github.com/jadjoubran/laravel5-angular-material-starter/issues/149) 10 | 11 | # Folder by recipe 12 | 13 | You can find the recipes in the recipes folder. Every recipe has its own files, including a **Readme.md** and all relevant information. 14 | 15 | # Contributions 16 | 17 | You are welcome to contribute your own recipes. 18 | 19 | Feel free to suggest your idea on [Gittr](https://gitter.im/jadjoubran/laravel5-angular-material-starter) or create a new issue on github. 20 | 21 | ### Requirements 22 | 23 | * Create a new folder inside recipes 24 | * Mandatory readme.md file that explains your recipe 25 | * Add required files or samples -------------------------------------------------------------------------------- /recipes/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jadjoubran/laravel-angular-recipes/c8a4dc6d8de23de9a9fec04bec591692c0cb1585/recipes/.gitkeep -------------------------------------------------------------------------------- /recipes/adminLTE/Readme.md: -------------------------------------------------------------------------------- 1 | # Laravel Angular AdminLte 2 | **Github Repo:** [https://github.com/silverbux/laravel-angular-admin](https://github.com/silverbux/laravel-angular-admin) 3 | 4 | **Demo:** [http://laravel-admin.herokuapp.com] (http://laravel-admin.herokuapp.com) ( admin@example.com / password ) 5 | 6 | **[AdminLTE] (https://github.com/almasaeed2010/AdminLTE)** -- is a fully responsive admin template. Based on **[Bootstrap 3](https://github.com/twbs/bootstrap)** framework. Highly customizable and easy to use. Fits many screen resolutions from small mobile devices to large desktops. 7 | 8 | ## Features 9 | * [Socialite] (https://github.com/laravel/socialite) 10 | * [JWT-Auth] (https://github.com/tymondesigns/jwt-auth) 11 | * [Dingo/API] (https://github.com/dingo/api) 12 | * [Restangular] (https://github.com/mgonto/restangular) 13 | * [UI-Router] (https://github.com/angular-ui/ui-router/) 14 | * Access Control List 15 | * [Romanbican/Roles] (https://github.com/romanbican/roles) 16 | * [Angular ACL] (https://github.com/mikemclin/angular-acl) 17 | 18 | ## Browser Support 19 | - IE 9+ 20 | - Firefox (latest) 21 | - Chrome (latest) 22 | - Safari (latest) 23 | - Opera (latest) --------------------------------------------------------------------------------