├── .travis.yml ├── CONTRIBUTING.md └── README.md /.travis.yml: -------------------------------------------------------------------------------- 1 | language: ruby 2 | 3 | rvm: 4 | - 2.2 5 | 6 | before_script: 7 | - gem install awesome_bot 8 | 9 | script: 10 | - awesome_bot README.md --allow-dupe --allow-redirect --allow-ssl 11 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | # CONTRIBUTING 2 | 3 | Contributions are welcome, and are accepted via pull requests. Please review these guidelines before submitting any pull requests. 4 | 5 | ## Must haves for Packages, Starter Projects, Codebases etc. 6 | 7 | - 400+ stars on GitHub. 8 | - Support Laravel 5.5 LTS or higher. 9 | - Use [PSR-4](http://www.php-fig.org/psr/psr-4/) autoloader. 10 | - Packages must be listed on [Packagist](https://packagist.org/). 11 | - Packages must have also had 10,000 downloads. 12 | - Utilize [Travis-CI](https://travis-ci.org/) or similar CI tools to automatically check coding standards and run tests. 13 | 14 | ## Adding to the list of Popular Packages 15 | 16 | Please ensure your pull request adheres to the following guidelines: 17 | 18 | - Make an individual pull request for each suggestion. 19 | - Search previous suggestions before making a new one, as yours may be a duplicate. 20 | - Use the following format for links: \[Package\]\(URL\) - Short description 21 | - The pull request and commit should have a useful title. 22 | 23 | ## Best practices for all repos 24 | 25 | - Keep a [Changelog](http://keepachangelog.com/) 26 | - Adhere to [PSR-2](http://www.php-fig.org/psr/psr-2/) as the coding style guide. 27 | - [DocBlock](http://www.phpdoc.org/docs/latest/references/phpdoc/index.html) all the things. 28 | - Use [Semantic Versioning](http://semver.org/). 29 | - Maintain an extensive [README](https://github.com/thephpleague/skeleton/blob/master/README.md). 30 | - [Excludes non-essential files in .gitattributes](https://www.reddit.com/r/PHP/comments/2jzp6k/i_dont_need_your_tests_in_my_production). 31 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Awesome Laravel [![Awesome](https://cdn.rawgit.com/sindresorhus/awesome/d7305f38d29fed78fa85652e3a63e154dd8e8829/media/badge.svg)](https://github.com/sindresorhus/awesome) [![Build Status](https://img.shields.io/travis/chiraggude/awesome-laravel/master.svg?style=flat)](https://travis-ci.org/chiraggude/awesome-laravel) 2 | 3 | > A curated list of awesome bookmarks, packages, tutorials, videos and other cool resources from the Laravel ecosystem. 4 | 5 | Inspired by [ziadoz/awesome-php](https://github.com/ziadoz/awesome-php) 6 | 7 | ## Table of Contents 8 | 9 | - [Essentials](#essentials) 10 | - [Packages](#packages) 11 | - [Popular Packages](#popular-packages) 12 | - [Development Setup](#development-setup) 13 | - [Application Hosting](#application-hosting) 14 | - [Application Deployment](#application-deployment) 15 | - [Code Snippets](#code-snippets) 16 | - [Tutorials & Blogs](#tutorials--blogs) 17 | - [Videos](#videos) 18 | - [Conferences](#conferences) 19 | - [Books](#books) 20 | - [Starter Projects](#starter-projects) 21 | - [Codebases for Reference](#codebases-for-reference) 22 | - [Content Management Systems](#content-management-systems) 23 | - [Podcasts](#podcasts) 24 | - [Community](#community) 25 | - [Jobs](#jobs) 26 | - [Hosted Development Tools](#hosted-development-tools) 27 | - [Miscellaneous](#miscellaneous) 28 | 29 | ## Essentials 30 | 31 | * [Laravel](https://laravel.com) ([Documentation](https://laravel.com/docs)) 32 | * [Laravel API Reference](https://laravel.com/api/master/) 33 | * [Lumen](https://lumen.laravel.com) ([Documentation](https://lumen.laravel.com/docs)) 34 | * [Laracasts](https://laracasts.com) 35 | * [Laravel News](https://laravel-news.com) ([Archive](https://laravel-news.com/archive/)) 36 | 37 | ## Packages 38 | 39 | * [Packagist](https://packagist.org/) 40 | * [Laravel Collective](https://laravelcollective.com/) 41 | * [Packalyst](http://packalyst.com/) 42 | * [Spatie](https://spatie.be/en/opensource/laravel) 43 | 44 | ## Popular Packages 45 | 46 | > This is a list of well-documented, tested packages that are frequently used in Laravel projects. If you're looking for an exhaustive list of PHP packages, then check out the Package Repositories mentioned above. 47 | 48 | ##### Developer Tools 49 | 50 | * [Scaffold Interface](https://github.com/amranidev/scaffold-interface) - A Smart CRUD Generator For Laravel 51 | * [IDE Helper](https://github.com/barryvdh/laravel-ide-helper) - Generates a helper file for IDE auto-completion 52 | * [Laravel 5 Extended Generators](https://github.com/laracasts/Laravel-5-Generators-Extended) - Extends built-in file generators 53 | * [Laravel API/Scaffold/CRUD Generator](https://github.com/InfyOmLabs/laravel-generator) - Generator for APIs, CRUD scaffolds etc. 54 | * [Laravel Tinx](https://github.com/furey/tinx) - Reload your Laravel Tinker session from inside Tinker 55 | * [Laravel API Documentation Generator](https://github.com/mpociot/laravel-apidoc-generator) - Automatically generate your API documentation 56 | * [Laravel Packager](https://github.com/Jeroen-G/Laravel-Packager) - A CLI tool for creating Laravel packages 57 | * [Workbench Export to Migrations](https://github.com/beckenrode/mysql-workbench-export-laravel-5-migrations) - Workbench plugin for exporting Models to Laravel migrations 58 | * [Laravel Decomposer](https://github.com/lubusIN/laravel-decomposer) - List all installed packages, their dependencies, app & server details 59 | * [LaRecipe](https://github.com/saleem-hadad/larecipe) - Write gorgeous documentations for your products using Markdown inside your Laravel app. 60 | 61 | ##### Testing & Debugging 62 | 63 | * [Laravel TestTools](https://chrome.google.com/webstore/detail/laravel-testtools/ddieaepnbjhgcbddafciempnibnfnakl) - Chrome extension to generate Laravel integration tests while using your app 64 | * [Laravel Test Factory Generator](https://github.com/mpociot/laravel-test-factory-helper) - Generate Laravel test factories from your existing models 65 | * [Clockwork](https://github.com/itsgoingd/clockwork) - Integrates Clockwork Chrome extension for debugging and profiling apps 66 | * [Debug Bar](https://github.com/barryvdh/laravel-debugbar) - Integrates PHP Debug Bar with Laravel 67 | * [Laravel 5 Log Viewer](https://github.com/rap2hpoutre/laravel-log-viewer) - Log viewer 68 | * [LogViewer](https://github.com/ARCANEDEV/LogViewer) - Provides a log viewer 69 | * [LERN](https://github.com/tylercd100/lern#lern-laravel-exception-recorder-and-notifier) - Record exceptions into a database and will send you a notification 70 | * [Mail Preview](https://github.com/themsaid/laravel-mail-preview) - Preview sent mail in a web browser or mail client 71 | * [Laravel Tracy](https://github.com/recca0120/laravel-tracy) - A Laravel Package to integrate Nette Tracy Debugger 72 | * [Laravel Terminal](https://github.com/recca0120/laravel-terminal) - run artisan in a web browser 73 | * [Laravel API Tester](https://github.com/asvae/laravel-api-tester) - Postman-like tool with Laravel routes 74 | * [Laravel Tail](https://github.com/spatie/laravel-tail) - The missing tail command 75 | * [Larvel Telescope](https://github.com/laravel/telescope) - Laravel Telescope is an elegant debug assistant for the Laravel framework 76 | 77 | ##### Authentication & Authorization 78 | 79 | * [Bouncer](https://github.com/JosephSilber/bouncer) - Roles & Permissions 80 | * [Laratrust](https://github.com/santigarcor/laratrust) - Roles, Permissions and teams 81 | * [Entrust](https://github.com/Zizaco/entrust) - Role-based Permissions 82 | * [JWT Auth](https://github.com/tymondesigns/jwt-auth) - JSON Web Token authentication for APIs 83 | * [Laravel Permission](https://github.com/spatie/laravel-permission) - Associate users with roles and permissions 84 | * [Defender](https://github.com/artesaos/defender) - Roles & Permissions 85 | * [OAuth2 Server Laravel](https://github.com/lucadegasperi/oauth2-server-laravel) - OAuth 2.0 authorization server and resource server 86 | * [Socialite](https://github.com/laravel/socialite) - OAuth authentication with Facebook, Google, Twitter etc. 87 | * [Socialite Providers 2.0](http://socialiteproviders.github.io/) - 100+ social authentication providers for Socialite with Lumen support 88 | * [Google2FA](https://github.com/antonioribeiro/google2fa) - Google Two-Factor Authentication Module 89 | * [Laravel User Verification](https://github.com/jrean/laravel-user-verification) - Handle the user verification flow and validate email 90 | * [Adldap2 Laravel](https://github.com/Adldap2/Adldap2-Laravel) - LDAP authentication and Active Directory management 91 | * [Doorman](https://github.com/clarkeash/doorman) - Limit access to your Laravel applications by using invite codes 92 | * [Laravel Heyman](https://github.com/imanghafoori1/laravel-heyman) - Heyman continues where the above role-permission packages left off 93 | 94 | ##### Utilities 95 | 96 | * [Artisan View](https://github.com/svenluijten/artisan-view) - Manage the views in Laravel projects via artisan 97 | * [Bootstrapper](https://github.com/patricktalmadge/bootstrapper/) - Set of classes to create Bootstrap 3 markup 98 | * [Captcha](https://github.com/mewebstudio/captcha) - An anti-bot image captcha system 99 | * [Charts](https://github.com/ConsoleTVs/Charts) - Multi-library chart package to create interactive charts 100 | * [Lavacharts](https://github.com/kevinkhill/lavacharts) - Charts and Graphs for PHP Powered by the Google Chart API 101 | * [Eloquent Filter](https://github.com/Tucker-Eric/EloquentFilter) - Filter models and their Relationships 102 | * [Eloquent Sluggable](https://github.com/cviebrock/eloquent-sluggable) - Create slugs for Eloquent models 103 | * [Eloquent Sortable](https://github.com/spatie/eloquent-sortable) - Sortable behaviour for Eloquent models 104 | * [HTML](https://github.com/LaravelCollective/html) - HTML and Form Builders for Laravel 105 | * [Multi-tenant](https://github.com/hyn/multi-tenant) - Flexible multi tenancy with secure separation of routes, assets and databases 106 | * [Laravel Form Builder](https://github.com/kristijanhusak/laravel-form-builder) - Form builder inspired by Symfony's form builder 107 | * [Laravel Activitylog](https://github.com/spatie/laravel-activitylog) - Log activity inside your Laravel app 108 | * [Laravel Auditing](https://github.com/owen-it/laravel-auditing) - Audit for Eloquent models 109 | * [Laravel Breadcrumbs](https://github.com/davejamesmiller/laravel-breadcrumbs) - Create and manage breadcrumbs 110 | * [Laravel Collection Macros](https://github.com/spatie/laravel-collection-macros) - A set of handy collection macros 111 | * [Laravel Cookie Consent](https://github.com/spatie/laravel-cookie-consent) - Make your Laravel app comply with the crazy EU cookie law 112 | * [Laravel Datatables](https://github.com/yajra/laravel-datatables) - jQuery DataTables API 113 | * [Laravel GeoIP](https://github.com/Torann/laravel-geoip) - Determine the location of website visitors based on their IP addresses 114 | * [Laravel Hashids](https://github.com/vinkla/laravel-hashids) - Generate unique, non-sequential ids using [Hashids](http://hashids.org/php/) 115 | * [Laravel Impersonate](https://github.com/404labfr/laravel-impersonate) - A package to authenticate as one of your users 116 | * [Laravel Markdown](https://github.com/GrahamCampbell/Laravel-Markdown) - CommonMark markdown parser 117 | * [Laravel Menu](https://github.com/spatie/laravel-menu) - Html menu generator for Laravel 118 | * [Laravel Talk](https://github.com/nahid/talk) - Realtime User messaging system 119 | * [Laravel Messenger](https://github.com/cmgmyr/laravel-messenger) - User messaging system 120 | * [Laravel Moderation](https://github.com/hootlex/laravel-moderation) - Approve or reject resources like posts, comments, users, etc. 121 | * [Laravel Tags](https://github.com/spatie/laravel-tags) - Add tags and taggable behaviour 122 | * [Laravel Stats Tracker](https://github.com/antonioribeiro/tracker) - Gather information from requests to identify and store 123 | * [Listify](https://github.com/lookitsatravis/listify) - Add sorting/ordering capabilities to any Eloquent model 124 | * [noCAPTCHA](https://github.com/ARCANEDEV/noCAPTCHA) - Helper for Google's new noCAPTCHA (reCAPTCHA) 125 | * [Purifier](https://github.com/mewebstudio/purifier) - HTML filter 126 | * [Revisionable](https://github.com/VentureCraft/revisionable) - Create a revision history for Eloquent models 127 | * [SEOTools](https://github.com/artesaos/seotools) - Helpers for some common SEO techniques 128 | * [Page Cache](https://github.com/JosephSilber/page-cache) - Caches responses as static files on disk for lightning fast page loads 129 | * [Laravel Setting](https://github.com/anlutro/laravel-settings) - Persistent configuration settings that are stored in JSON files 130 | * [Friendship](https://github.com/hootlex/laravel-friendships) - Friendship management system 131 | * [Teamwork](https://github.com/mpociot/teamwork) - User to team associations with an invite system 132 | * [Validating](https://github.com/dwightwatson/validating) - Trait for validating Eloquent models 133 | * [VAT Calculator](https://github.com/mpociot/vat-calculator) - Handle all the hard stuff related to EU MOSS vat regulations 134 | * [Laravel UUID](https://github.com/webpatser/laravel-uuid) - Generate a UUID according to the RFC 4122 standard 135 | * [Laravel Installer](https://github.com/RachidLaasri/LaravelInstaller) - Allow users to install your application just by following the setup wizard, like WordPress 136 | * [Laravel Modules](https://github.com/nWidart/laravel-modules) - Easy module management 137 | * [Laravel Phone](https://github.com/Propaganistas/Laravel-Phone) - Phone number validator and formatter 138 | * [Laravel Ban](https://github.com/cybercog/laravel-ban) - Simplify blocking and banning Eloquent models 139 | * [Laravel Proxy](https://github.com/fideloper/TrustedProxy) - Handling sessions when behind load balancers or other intermediaries. 140 | * [Laravel Video Chat](https://github.com/PHPJunior/laravel-video-chat) - Video Chat using Socket.IO and WebRTC 141 | * [Widgets for Laravel](https://github.com/arrilot/laravel-widgets) - A powerful alternative to view composers. 142 | * [Secure Headers](https://github.com/BePsvPT/secure-headers) - Add security related headers to HTTP response 143 | * [Laravel Nova](https://nova.laravel.com/) - Nova is a beautifully designed administration panel for Laravel 144 | * [Laravel Love](https://github.com/cybercog/laravel-love) - It lets people express how they feel about the content. React on Eloquent models with Likes or Dislikes. 145 | 146 | ##### Media & Document Management 147 | 148 | * [Intervention Image](https://github.com/Intervention/image) - Image handling library for creating, editing and composing images 149 | * [Laravel ImageUp](https://github.com/qcod/laravel-imageup) - Yet another image manipulation package, adds tons of extra functionality 150 | * [Laravel Glide](https://github.com/spatie/laravel-glide) - Easily convert images with Glide 151 | * [Laravel MediaLibrary](https://github.com/spatie/laravel-medialibrary) - Associate files with Eloquent models 152 | * [Laravel Snappy](https://github.com/barryvdh/laravel-snappy) - HTML to PDF generator using wkhtmltopdf 153 | * [Laravel DOMPDF](https://github.com/barryvdh/laravel-dompdf) - HTML to PDF generator using [dompdf](https://github.com/dompdf/dompdf) 154 | * [Laravel Stapler](https://github.com/CodeSleeve/laravel-stapler) - ORM-based file upload manager 155 | * [Laravel Excel](https://github.com/Maatwebsite/Laravel-Excel) - Import and export Excel and CSV files 156 | * [Fast Excel](https://github.com/rap2hpoutre/fast-excel) - Fast XLSX, CSV and ODT import and export for Laravel 157 | * [Laravolt Avatar](https://github.com/laravolt/avatar) - Plug n play avatar, turn name, email, and any other string into beautiful avatar (or gravatar), effortless. 158 | 159 | ##### Integration with Javascript 160 | 161 | * [Laroute](https://github.com/aaronlord/laroute) - Generate Laravel route URLs from JavaScript 162 | * [PHP Vars to JavaScript Transformer](https://github.com/laracasts/PHP-Vars-To-Js-Transformer) - Pass server-side string/array/collection/whatever to JavaScript 163 | * [Javascript Validation](https://github.com/proengsoft/laravel-jsvalidation) - Use validation rules, messages, FormRequest and validators to validate forms in client-side 164 | * [Laravel Pjax](https://github.com/spatie/laravel-pjax) - A Pjax middleware 165 | * [Laravel Blade Javascript](https://github.com/spatie/laravel-blade-javascript) - A Blade directive to export variables to JavaScript 166 | * [Ziggy](https://github.com/tightenco/ziggy) - Use your Laravel named routes in JavaScript 167 | 168 | ##### Databases, ORMs, Migrations & Seeding 169 | 170 | * [Backup Manager](https://github.com/backup-manager/laravel) - Backup and restore databases from S3, Dropbox, SFTP etc. 171 | * [Laravel Nestedset](https://github.com/lazychaser/laravel-nestedset) - Nested Sets pattern implementation 172 | * [ClosureTable](https://github.com/franzose/ClosureTable) - Closure table pattern implementation 173 | * [Eloquence](https://github.com/kirkbushell/eloquence) - Extra features for Eloquent models 174 | * [iSeed](https://github.com/orangehill/iseed) - Generate a new seed file from an existing database table 175 | * [Laravel OCI8](https://github.com/yajra/laravel-oci8) - Oracle DB driver via OCI8 176 | * [Laravel Backup](https://github.com/spatie/laravel-backup) - Backup your app 177 | * [Laravel Doctrine](https://github.com/laravel-doctrine/orm) - Doctrine 2 ORM implementation 178 | * [Laravel MongoDB](https://github.com/jenssegers/laravel-mongodb) - Eloquent model and query builder with support for MongoDB 179 | * [Migrations Generator](https://github.com/Xethron/migrations-generator) - Generate migrations from an existing database 180 | * [Sofa/Eloquence](https://github.com/jarektkaczyk/eloquence) - Extensions for the Eloquent ORM 181 | * [Tenanti](https://github.com/orchestral/tenanti) - Multi-tenant database schema manager 182 | * [Laravel Repository](https://github.com/andersao/l5-repository) - Repositories to abstract the database layer 183 | * [Lada Cache](https://github.com/spiritix/lada-cache) - A Redis based, fully automated and scalable database cache layer 184 | * [Laravel MySQL Spatial extension](https://github.com/grimzy/laravel-mysql-spatial) - easily work with MySQL Spatial Data Types and MySQL Spatial Functions 185 | 186 | ##### Search 187 | 188 | * [Algolia Search](https://github.com/algolia/algoliasearch-laravel) - Integrates the Algolia Search API to the Laravel Eloquent ORM 189 | * [Elasticquent](https://github.com/elasticquent/Elasticquent) - Elasticsearch for Eloquent models 190 | * [Plastic](https://github.com/sleimanx2/plastic) - Fluently mapping and searching Elasticsearch 191 | * [Laravel Search](https://github.com/mmanos/laravel-search) - Unified API for Elasticsearch, Algolia, and ZendSearch 192 | * [SearchIndex](https://github.com/spatie/searchindex) - Store and retrieve objects from Algolia or Elasticsearch 193 | * [Searchable](https://github.com/nicolaslopezj/searchable) - Trait that adds a simple search function to Eloquent models 194 | * [TNTSearch](https://github.com/teamtnt/tntsearch) - A fully featured full text search engine written in PHP 195 | * [TNTSearch driver](https://github.com/teamtnt/laravel-scout-tntsearch-driver) - Driver for [Laravel Scout](https://github.com/laravel/scout) search package based on TNTSearch 196 | 197 | ##### APIs 198 | 199 | * [ApiGuard](https://github.com/chrisbjr/api-guard) - Allow API authentication with API keys 200 | * [Dingo API](https://github.com/dingo/api) - Multi-purpose toolkit for developing RESTful APIs 201 | * [Laravel CORS](https://github.com/barryvdh/laravel-cors) - Add CORS (Cross-Origin Resource Sharing) headers support 202 | * [Laravel Fractal](https://github.com/spatie/laravel-fractal) - Output complex, flexible, AJAX/RESTful data structures with Fractal 203 | * [Laravel GraphQL](https://github.com/rebing/graphql-laravel) - Supports Relay, eloquent models, validation and GraphiQL 204 | * [Lighthouse](https://github.com/nuwave/lighthouse) - An up and coming GraphQL library for Laravel 205 | * [Laravel Responder](https://github.com/flugger/laravel-responder) - Build custom API responses with Fractal 206 | 207 | ##### Tasks, Commands and Scheduling 208 | 209 | * [Dispatcher](https://github.com/indatus/dispatcher) - Scheduler for Artisan commands 210 | * [Elixir](https://github.com/laravel/elixir) - Node (NPM) package to run Gulp tasks 211 | * [Mix](https://github.com/JeffreyWay/laravel-mix) - Fluent API for defining basic webpack build steps 212 | * [Envoy](https://github.com/laravel/envoy) - SSH Task Runner 213 | 214 | ##### Payments 215 | 216 | * [Cashier](https://github.com/laravel/cashier) - Subscription billing with Stripe 217 | * [Omnipay for Laravel](https://github.com/ignited/laravel-omnipay) - Integrate the [Omnipay](https://github.com/thephpleague/omnipay) PHP library 218 | 219 | ##### Optimization 220 | 221 | * [Intervention Image Cache](https://github.com/Intervention/imagecache) - Caching extension for the Intervention Image Class 222 | * [Laravel HTMLMin](https://github.com/GrahamCampbell/Laravel-HTMLMin) - Blade/HTML/CSS/javascript minifier 223 | * [Rememberable](https://github.com/dwightwatson/rememberable) - Query caching for Eloquent 224 | * [Widgetize](https://github.com/imanghafoori1/laravel-widgetize) - Page Partial caching 225 | * [Laravel Responsecache](https://github.com/spatie/laravel-responsecache) - Speed up app by caching the entire response 226 | 227 | ##### Monitoring 228 | 229 | * [Horizon](https://github.com/laravel/horizon) - Monitor and configure queues with a simple web UI 230 | * [Laravel Failed Job Monitor](https://github.com/spatie/laravel-failed-job-monitor) - Get notified when a queued job fails 231 | * [Laravel Uptime Monitor](https://github.com/spatie/laravel-uptime-monitor) - A powerful and easy to configure uptime and ssl monitor 232 | * [Larametrics](https://github.com/aschmelyun/larametrics) - A self-hosted metrics and notifications platform for Laravel apps 233 | 234 | ##### Localization 235 | 236 | * [Language Files](https://github.com/caouecs/Laravel-lang) - Validation, Pagination and Reminders language lines in 37 languages 237 | * [Laravel Localization](https://github.com/mcamara/laravel-localization) - Add i18n support via routes 238 | * [Laravel Translatable](https://github.com/spatie/laravel-translatable) - Making Eloquent models translatable by storing translations as JSON 239 | * [Laravel Translatable](https://github.com/dimsav/laravel-translatable) - Retrieve and store translatable Eloquent model instances 240 | * [Laravel Translator](https://github.com/vinkla/laravel-translator) - Translate Eloquent models into multiple languages 241 | * [Laravel Date](https://github.com/jenssegers/date) - A library to help you work with dates in multiple languages, based on Carbon 242 | * [Laravel Langman](https://github.com/themsaid/laravel-langman) - Manage language files from Artisan Console 243 | * [Laravel Translation](https://github.com/waavi/translation) - Translation and localization management 244 | * [Linguist](https://github.com/keevitaja/linguist) - i18n localization support for Laravel 245 | 246 | ##### Third-party Service Integration 247 | 248 | * [Laravel Analytics](https://github.com/spatie/laravel-analytics) - Retrieve pageviews and other data from Google Analytics 249 | * [Laravel DigitalOcean](https://github.com/GrahamCampbell/Laravel-DigitalOcean) - DigitalOceanV2 bridge 250 | * [Laravel GitHub](https://github.com/GrahamCampbell/Laravel-GitHub) - PHP GitHub API bridge 251 | * [Laravel Instagram](https://github.com/vinkla/laravel-instagram) - Instagram API bridge 252 | * [Laravel Newsletter](https://github.com/spatie/laravel-newsletter) - Send newsletters with Mailchimp 253 | * [Laravel Pusher](https://github.com/vinkla/laravel-pusher) - Pusher API bridge 254 | 255 | ## Development Setup 256 | 257 | * [Homestead](https://laravel.com/docs/master/homestead) - Official Vagrant box for Laravel 258 | * [Valet](https://laravel.com/docs/master/valet) - Development environment for Mac users 259 | * [Valet Linux](https://github.com/cpriego/valet-linux) - Development environment for Linux users 260 | * [LaraDock](https://github.com/LaraDock/laradock) - Run Laravel on Docker (Like Homestead but for Docker instead of Vagrant) 261 | * [LaraEdit Docker](https://github.com/laraedit/laraedit-docker) - Homestead environment in a single Docker container 262 | * [Laragon](https://laragon.org/) - Isolated development environment on Windows 263 | * [Stacker](https://github.com/Maxlab/stacker) - The environment for local web development on Docker 264 | * [Devilbox](https://github.com/cytopia/devilbox) - A dockerized and general-purpose LAMP/MEAN stack for every PHP version 265 | * [Vessel](https://vessel.shippingdocker.com) - Simple Docker development environments for Laravel. 266 | 267 | ## Application Hosting 268 | 269 | * [Forge](https://forge.laravel.com/) ([ForgeRecipes](https://forgerecipes.com/)) 270 | * [FortRabbit](https://www.fortrabbit.com/laravel-hosting) 271 | * [Heroku](https://www.heroku.com/) ([Documentation](https://devcenter.heroku.com/articles/getting-started-with-laravel)) 272 | * [AWS Elastic Beanstalk](https://aws.amazon.com/elasticbeanstalk/) ([Tutorial](http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/php-laravel-tutorial.html)) 273 | * [Cloudways](https://www.cloudways.com/en/laravel-hosting.php) 274 | * [Ploi](https://ploi.io/) 275 | * [CodePier](https://codepier.io?ref=awesome-laravel) 276 | * [RunCloud](https://runcloud.io/) 277 | 278 | ## Application Deployment 279 | 280 | * [Deployer](https://deployer.org/) - A deployment tool with support for Laravel out of the box 281 | * [Envoyer](https://envoyer.io/) - Zero down-time Deployer for PHP & Laravel projects 282 | * [Rocketeer](https://github.com/rocketeers/rocketeer) - Task runner and deployment package 283 | 284 | ## Code Snippets 285 | 286 | * [Laravel LTS Cheat Sheet ](https://summerblue.github.io/laravel5-cheatsheet/) ([Chinese version](https://cs.phphub.org/)) 287 | * [Laravel Tricks](http://laravel-tricks.com/) 288 | 289 | ## Tutorials & Blogs 290 | 291 | * [Taylor Otwell](http://taylorotwell.com/) 292 | * [Tuts+](https://code.tutsplus.com/categories/laravel) 293 | * [Medium](https://medium.com/tag/laravel/latest) 294 | * [Laravel Daily](https://laraveldaily.com/) 295 | * [Scotch](https://scotch.io/tag/laravel) 296 | * [Digital Ocean](https://www.digitalocean.com/community/search?q=laravel&primary_filter=newest&type=tutorials) 297 | * [Matt Stauffer](https://mattstauffer.co/blog) 298 | * [Vegi Bit](https://vegibit.com/tag/laravel/) 299 | * [Neon Tsunami](https://www.neontsunami.com/tags/laravel) 300 | * [Dor.ky](https://dor.ky/tag/laravel/) 301 | * [Stillat](https://stillat.com/explore/categories/laravel-5) 302 | * [Easy Laravel Book Blog](http://www.easylaravelbook.com/blog/) 303 | * [Laraveles](http://laraveles.com/blog/) (ES) 304 | * [Styde](https://styde.net/category/laravel-5/) (ES) 305 | * [Cloudways Laravel Blog](http://cloudways.com/blog/laravel) 306 | * [Laravel Best Practices](https://github.com/alexeymezenin/laravel-best-practices) 307 | * [Pusher Laravel Tutorials](https://pusher.com/tutorials?tag=Laravel) 308 | * [LaraShout](https://larashout.com/) 309 | 310 | ## Videos 311 | 312 | * [Laracasts](https://laracasts.com/) 313 | * [Codecourse](https://www.codecourse.com/) ([YouTube](https://www.youtube.com/user/phpacademy/playlists)) 314 | * [Tuts+](http://code.tutsplus.com/categories/laravel/courses) 315 | * [Servers for Hackers](https://serversforhackers.com/laravel-perf) 316 | * [Test-Driven Laravel](https://course.testdrivenlaravel.com/) 317 | * [Duilio Palacios](https://www.youtube.com/user/silencedsg/videos) (ES) 318 | * [CodigoFacilito](https://codigofacilito.com/courses/laravel) (ES) 319 | * [DevDojo](https://devdojo.com/search?value=laravel) 320 | * [Amitav Roy](https://www.youtube.com/channel/UC4gijXR8cM4gmEt9Olse-TQ/videos) 321 | * [Laracademy](https://laracademy.co/) 322 | * [Dev Marketer](https://www.youtube.com/channel/UC6kwT7-jjZHHF1s7vCfg2CA/playlists) 323 | * [Udemy](https://www.udemy.com/courses/search/?q=laravel) 324 | * [Lynda](https://www.lynda.com/search?q=laravel) 325 | * [Pluralsight](https://www.pluralsight.com/search?q=laravel&categories=course) 326 | * [Bitfumes](https://www.youtube.com/bitfumes) 327 | 328 | ## Conferences 329 | 330 | * [Laracon US](http://laracon.us/) 331 | * [Laracon EU](http://laracon.eu/) 332 | * [Laracon Online](https://laracon.net/) 333 | * [Laraconf Brasil](http://laraconfbrasil.com.br/) 334 | * [Laracon Australia](https://laracon.com.au/) 335 | * [Laravel Live UK](https://laravellive.uk/) 336 | * [Laravel Live India](http://laravellive.in/) 337 | 338 | ##### Videos 339 | 340 | * [Laracon EU 2018](https://www.youtube.com/playlist?list=PLMdXHJK-lGoC64wnqvm6v1R5dsuAV-MpS) 341 | * [Laracon US 2018](https://www.youtube.com/playlist?list=PL-yJve--iT5oM2LgF37VXsBb8Os4ZulIc) 342 | * [Laracon EU 2017](https://www.youtube.com/playlist?list=PLMdXHJK-lGoBFZgG2juDXF6LiikpQeLx2) 343 | * [Laracon US 2017](https://www.youtube.com/playlist?list=PL-yJve--iT5oaLQA6OI8TWLVSOBP1qhs3) 344 | * [Laracon EU 2016](https://www.youtube.com/playlist?list=PLMdXHJK-lGoCMkOxqe82hOC8tgthqhHCN) 345 | * [Laracon US 2016](https://www.youtube.com/playlist?list=PL-yJve--iT5o9fH_cRY0u6P751pcF59GK) 346 | * [Laracon EU 2015](https://www.youtube.com/playlist?list=PLMdXHJK-lGoA9SIsuFy0UWL8PZD1G3YFZ) 347 | * Laracon US 2015 348 | * [Laracon EU 2014](https://www.youtube.com/playlist?list=PLMdXHJK-lGoCYhxlU3OJ5bOGhcKtDMkcN) 349 | * [Laracon US 2014](https://www.youtube.com/channel/UCRawXmZv30Vf_MivyPYb_GQ/videos) 350 | * [Laracon EU 2013](https://www.youtube.com/playlist?list=PLMdXHJK-lGoB-CIVsiQt0WU8WcYrb5eoe) 351 | * [Laracon US 2013](https://www.youtube.com/playlist?list=PLkwAlZpjHQbLcox_S_AgGU24QUfKgXayN) 352 | 353 | ## Books 354 | 355 | * [Laravel Starter](https://www.amazon.com/Laravel-Starter-Shawn-McCool-ebook/dp/B00ABFQ0AS) by Shawn McCool 356 | * [Laravel: Code Happy](https://leanpub.com/codehappy) by Dayle Rees 357 | * [Laravel: Code Bright](https://leanpub.com/codebright) by Dayle Rees 358 | * [Laravel: Code Smart](https://leanpub.com/codesmart) by Dayle Rees 359 | * [Laravel: From Apprentice To Artisan](https://leanpub.com/laravel) by Taylor Otwell 360 | * [Laravel 4 Cookbook](https://leanpub.com/laravel4cookbook) by Christopher Pitt and Taylor Otwell 361 | * [Laravel Testing Decoded](https://leanpub.com/laravel-testing-decoded) by Jeffrey Way 362 | * [Refactoring to Collections](https://adamwathan.me/refactoring-to-collections/) by Adam Wathan 363 | * [Implementing Laravel](https://leanpub.com/implementinglaravel) by Chris Fidao 364 | * [Getting Stuff Done with Laravel 4](https://leanpub.com/gettingstuffdonelaravel) by Chuck Heintzelman 365 | * [Laravel Application Development Blueprints](https://www.packtpub.com/web-development/laravel-application-development-blueprints) by Arda Kılıçdağı and Halil İbrahim Yılmaz 366 | * [Build APIs You Won't Hate](https://leanpub.com/build-apis-you-wont-hate) by Phil Sturgeon 367 | * [Integrating Front end Components with Web Applications](https://leanpub.com/frontend) by Maksim Surguy 368 | * [Laravel Design Patterns and Best Practices](https://www.packtpub.com/web-development/laravel-design-patterns-and-best-practices) by Arda Kılıçdağı and Halil İbrahim Yılmaz 369 | * [Learning Laravel 4 Application Development](https://www.packtpub.com/web-development/learning-laravel-4-application-development) by Hardik Dangar 370 | * [Getting Started with Laravel 4](https://www.packtpub.com/web-development/getting-started-laravel-4) by Raphaël Saunier 371 | * [Laravel Application Development Cookbook](https://www.packtpub.com/web-development/laravel-application-development-cookbook) by Terry Matula 372 | * [Building Web Applications Using Parse REST API](https://leanpub.com/building-web-applications-using-parse-rest-api) by Mhd Zaher Ghaibeh 373 | * [Laravel - My First Framework](https://leanpub.com/laravel-first-framework) by Maksim Surguy 374 | * [Easy Laravel 5](https://leanpub.com/easylaravel/) by W. Jason Gilmore 375 | * [Laravel 5 Essentials](https://www.packtpub.com/web-development/laravel-5-essentials) by Martin Bean 376 | * [Easy E-Commerce Using Laravel and Stripe](https://leanpub.com/easyecommerce) by W. Jason Gilmore and Eric L. Barnes 377 | * [Laravel 5.1 Beauty](https://leanpub.com/l5-beauty) by Chuck Heintzelman 378 | * [Design Patterns with PHP and Laravel](https://leanpub.com/larasign) by Kelt Dockins 379 | * [Mastering Laravel](https://www.packtpub.com/web-development/mastering-laravel) by Christopher John Pecoraro 380 | * [How to Build Real-Time Laravel Apps with Pusher](http://pusher-community.github.io/real-time-laravel/) by Pusher 381 | * [Learning Laravel's Eloquent](https://www.amazon.com/Learning-Laravels-Eloquent-Francesco-Malatesta-ebook/dp/B00YSILQ6C) by Francesco Malatesta 382 | * [Laravel 5 Learn Easy](https://leanpub.com/laravel5learneasy) by Sanjib Sinha 383 | * [Laravel and AngularJS](https://leanpub.com/laravel-and-angularjs) by Daniel Schmitz and Daniel Pedrinha Georgii 384 | * [Laravel Collections Unraveled](https://leanpub.com/laravelcollectionsunraveled) by Jeff Madsen 385 | * [Writing APIs With Lumen](https://leanpub.com/lumen-apis) by Paul Redmond 386 | * [The Laravel Survival Guide](https://leanpub.com/laravelsurvivalguide) by Tony Lea 387 | * [Laraboot: Laravel 5 For Beginners](https://leanpub.com/laravel-5-for-beginners-laraboot) by Bill Keck 388 | * [Laravel 5.4 For Beginners](https://leanpub.com/laravel-5-4-for-beginners) by Bill Keck 389 | * [Laravel Up & Running](https://www.amazon.com/gp/product/1491936088) by Matt Stauffer 390 | * [Laravel Companion](https://leanpub.com/laravelcompanion-secondedition) by Johnathon Koster 391 | * [Deploy Laravel on AWS with CloudFormation](https://leanpub.com/laravel-aws) by Lionel Martin 392 | * [React Native and Laravel for Future Mobile Development](https://leanpub.com/rn_laravel) by Ega Radiegtya 393 | * [Servers for Hackers](https://book.serversforhackers.com) by Chris Fidao 394 | * [Full-Stack Vue.js 2 and Laravel 5](https://www.amazon.com/Full-Stack-Vue-js-Laravel-frontend-together/dp/1788299582) by Anthony Gore 395 | 396 | ## Starter Projects 397 | 398 | * [Spark](https://spark.laravel.com/) 399 | * [LaraAdmin](https://github.com/dwijitsolutions/laraadmin) 400 | * [Grafite Builder](https://github.com/GrafiteInc/Builder) 401 | * [Laravel Boilerplate](https://github.com/rappasoft/laravel-5-boilerplate) 402 | * [Laravel Angular Material Starter](https://github.com/jadjoubran/laravel5-angular-material-starter) 403 | * [AdminLTE Laravel](https://github.com/acacha/adminlte-laravel) 404 | * [Laravel Hackathon Starter](https://github.com/unicodeveloper/laravel-hackathon-starter) 405 | * [Laravel API Starter Kit](https://github.com/joselfonseca/laravel-api) 406 | * [Backpack for Laravel](https://github.com/Laravel-Backpack/Base) 407 | * [SomelineStarter](https://github.com/someline/someline-starter) 408 | * [Laravel Admin](https://github.com/z-song/laravel-admin) 409 | * [Voyager](https://github.com/the-control-group/voyager) 410 | * [Orchid](https://github.com/TheOrchid/Platform) 411 | * [Laravel REST API Boilerplate](https://github.com/francescomalatesta/laravel-api-boilerplate-jwt) 412 | * [Hello API](https://github.com/Porto-SAP/Hello-API) 413 | * [REST API With Lumen](https://github.com/hasib32/rest-api-with-lumen) 414 | * [Laravel Zero - Console application](https://github.com/laravel-zero/laravel-zero) 415 | * [Apiato](https://github.com/apiato/apiato) 416 | * [Laravel Adminpanel](https://github.com/viralsolani/laravel-adminpanel) 417 | * [Laravel Vue Boilerplate](https://github.com/alefesouza/laravel-vue-boilerplate) 418 | * [Laravel Enso](https://github.com/laravel-enso/enso) 419 | * [Laravel Template with Vue](https://github.com/wmhello/laravel_template_with_vue) 420 | 421 | ## Codebases for Reference 422 | 423 | * [Cachet](https://github.com/cachethq/Cachet) - Status page system for websites and APIs 424 | * [Deployer](https://github.com/REBELinBLUE/deployer) - Application deployment system 425 | * [GitScrum](https://github.com/renatomarinho/laravel-gitscrum) - Task management with Git and Scrum 426 | * [Invoice Ninja](https://github.com/invoiceninja/invoiceninja) - Invoicing, expenses, & time-tracking application 427 | * [Koel](https://github.com/phanan/koel) - Personal music streaming server 428 | * [Laravel.io](https://github.com/laravelio/portal) - Source for the Laravel.io Community Portal 429 | * [Attendize](https://github.com/Attendize/Attendize) - Ticket selling and event management platform 430 | * [Antvel](https://github.com/ant-vel/App) - Ecommerce platform 431 | * [Jigsaw](https://github.com/tightenco/jigsaw) - Static site generator 432 | * [Canvas](https://github.com/austintoddj/Canvas) - Minimal Blogging Application For Developers 433 | * [Vuedo](https://github.com/Vuedo/vuedo) - Vuedo is blog platform, built with Laravel and Vue.js 434 | * [Screeenly](https://github.com/stefanzweifel/screeenly) - Create website screenshots through an API 435 | * [Voten](https://github.com/voten-co/voten) - A real-time social bookmarking for the 21st century 436 | * [Monica](https://github.com/monicahq/monica) - Personal relationship management system 437 | * [Snipe-IT](https://github.com/snipe/snipe-it) - IT asset/license management system 438 | * [Akaunting](https://github.com/akaunting/akaunting) - Accounting software for small businesses and freelancers 439 | * [Torch](https://github.com/mattstauffer/Torch) - Examples of using each Illuminate component in non-Laravel applications 440 | * [Pixelfed](https://github.com/pixelfed/pixelfed) - A free and ethical photo sharing platform, powered by ActivityPub federation 441 | 442 | 443 | ## Content Management Systems 444 | 445 | * [OctoberCMS](https://github.com/octobercms/october) 446 | * [SleepingOwlAdmin](https://github.com/LaravelRUS/SleepingOwlAdmin) 447 | * [PyroCMS](https://github.com/pyrocms/pyrocms) 448 | * [Lavalite](https://github.com/LavaLite/cms) 449 | * [TypiCMS](https://github.com/typicms/base) 450 | * [Asgard CMS](https://github.com/AsgardCms/Platform) 451 | * [Microweber](https://github.com/microweber/microweber) 452 | * [Coaster CMS](https://github.com/web-feet/coastercms) 453 | * [Statamic](https://statamic.com/) 454 | * [Grafite CMS](https://github.com/GrafiteInc/CMS) 455 | * [Borgert CMS](https://github.com/odirleiborgert/borgert-cms/) 456 | * [PJ Blog](https://github.com/jcc/blog/) 457 | * [Laralum](https://github.com/Laralum/Laralum) 458 | 459 | ## Podcasts 460 | 461 | * [The Laravel Podcast](http://www.laravelpodcast.com/) 462 | * [The Laravel News Podcast](https://laravel-news.com/podcast/ ) 463 | * [The Laracasts Snippet](https://laracasts.simplecast.fm/) 464 | * [Hecho en Laravel (Spanish)](http://hechoenlaravel.com) 465 | 466 | ## Community 467 | 468 | * [Laracasts Forum](https://laracasts.com/discuss) 469 | * [Laravel.io Forum](http://laravel.io/forum) 470 | * [Larachat Slack](https://larachat.slack.com/) ([Signup](https://larachat.co/register)) 471 | * [Gitter](https://gitter.im/laravel/laravel) 472 | * [IRC Channel](http://laravel.io/chat) 473 | * [StackOverflow](http://stackoverflow.com/questions/tagged/laravel) 474 | * [Twitter](https://twitter.com/laravelphp) 475 | * [Google+](https://plus.google.com/communities/106838454910116161868) 476 | * [Reddit](https://www.reddit.com/r/laravel) 477 | * [Quora](https://www.quora.com/topic/Laravel) 478 | * [Facebook](https://www.facebook.com/LaravelCommunity) 479 | * [LinkedIn](https://www.linkedin.com/groups/4419933/profile) 480 | * [Laraveles Slack](https://laraveles.slack.com) ([Signup](http://laraveles.com/blog/wp-login.php?action=slack-invitation)) 481 | * [Laravel UK](https://laravelphp.uk/), [Slack Signup](https://laravelphp.uk/login/slack) 482 | 483 | ##### Local User Groups 484 | 485 | * [Laravel Global Community](https://www.facebook.com/groups/group.laravel/) 486 | * [Laravel Russia](https://laravel.ru/) ([VK group](http://m.vk.com/laravel_rus)) 487 | * [Laravel France](https://laravel.fr/) 488 | * [Laravel Bangladesh](https://www.facebook.com/groups/LaravelBanglaDesh/) 489 | * [Laravel Indonesia](http://id-laravel.com/) ([Facebook](https://www.facebook.com/groups/laravel/), [Telegram](https://t.me/laravelindonesia)) 490 | * [Laravel Brasil](http://www.laravel.com.br/) ([Facebook](https://www.facebook.com/groups/laravelbrasil/), [Slack](http://slack.laravel.com.br), [Telegram](https://telegram.me/laravelbr), [GitHub](https://github.com/laravelbrasil)) 491 | * [Laravel Turkey](http://www.laravel.gen.tr/) ([Facebook](https://www.facebook.com/groups/laravelturkiye/)) 492 | * [Laravel Nigeria](http://www.laranaija.com/) ([Facebook](https://www.facebook.com/groups/laravelnigeria/)) 493 | * [Laravel China](https://phphub.org/) 494 | * [Laravel Taiwan](https://laravel.tw/) ([Facebook](https://www.facebook.com/groups/laravel.tw/)) 495 | * [Laravel Spanish](http://laraveles.com/foro/) 496 | * [Laravel Korea](https://www.laravel.co.kr/) ([Facebook](https://www.facebook.com/groups/laravelkorea/)) 497 | * [Laravel Japan](http://laravel.jp/) ([Facebook](https://www.facebook.com/groups/laravel.jp/)) 498 | * [Laravel Malaysia](https://www.facebook.com/groups/laravel.my/) 499 | * [Laravel Algeria](https://www.facebook.com/groups/LaravelAlgeria/) 500 | * [Laravel Greece](http://www.laravel.gr) ([Facebook](https://www.facebook.com/laravelgr)) 501 | * [Laravel Middle East](http://laravelme.com/) ([Facebook](https://www.facebook.com/laravelme)) 502 | * [Laravel Georgia](https://www.facebook.com/groups/laravel.georgia/) 503 | * [Laravel Italy](http://laravel-italia.it) 504 | * [Laravel Vietnam](https://www.facebook.com/groups/vietnam.laravel/) 505 | * [Laravel Slovenia](https://www.facebook.com/groups/laravelslovenija/) 506 | * [Laravel Hungary](https://laravel.hu) 507 | * [Laravel Cameroon](https://laravelcm.com/) ([Slack](https://laravelcm.slack.com), [GitHub](https://github.com/laravelcm), [Facebook](https://www.facebook.com/laravelcm), [Twitter](https://twitter.com/laravelcm)) 508 | 509 | ##### Meetups 510 | 511 | * [All Meetups](http://www.meetup.com/topics/laravel/) 512 | * [London Meetup](https://www.meetup.com/London-Laravel/) 513 | * [Buenos Aires Meetup](https://www.meetup.com/Laravel-Buenos-Aires/) 514 | * [Athens-Greece Meetup](https://www.meetup.com/athens-laravel-meetup/) 515 | * [Copenhagen Meetup](https://www.meetup.com/Copenhagen-Laravel-Meetup/) 516 | * [Detroit Meetup](https://www.meetup.com/Laravel-Detroit/) 517 | * [Paris Meetup](https://www.meetup.com/fr-FR/Paris-Laravel-Meetup/) 518 | * [Melbourne Meetup](https://www.meetup.com/Melbourne-laravel-Meetup/) 519 | * [Budapest Meetup](https://www.meetup.com/Laravel-Hungary-Meetup/) 520 | 521 | ## Jobs 522 | 523 | * [LaraJobs](https://larajobs.com/) 524 | * [Laravel Gurus](https://laravelgurus.com/) 525 | * [Laravel Certification](https://laravel.com/certification/) 526 | 527 | ## Hosted Development Tools 528 | 529 | * [Laravel Shift](https://laravelshift.com/) - Automated upgrade tool for Laravel projects 530 | * [Laravel Versions {x.y.z}](https://laraver.xyz/) - Monitor Laravel for updates 531 | * [Laravel Schema Designer](http://laravelsd.com/) - Create, export and share database schemas 532 | * [StyleCI](https://styleci.io) - PHP Coding Style Service 533 | * [DependenCI](https://dependenci.miguelpiedrafita.com) - Continous integration tool for Composer 534 | 535 | ## Miscellaneous 536 | 537 | * [CodeCanyon](https://codecanyon.net/tags/laravel?term=laravel) - Paid scripts and plugins 538 | * [Laravel Collections](https://laravelcollections.com) - Every Laravel Developers Goto Resource Site 539 | * [LaravelLinks](https://telegram.me/laravellinks) - A Telegram Channel dedicated to sharing great Laravel Resources 540 | 541 | ## Contributing 542 | 543 | Found an awesome package, blog, course or video? Send me a pull request! 544 | 545 | #### Guidelines 546 | 547 | * Please make an individual pull request for each suggestion 548 | * Make sure the Travis tests pass on your pull request 549 | * Use the following format for links: \[Resource\]\(URL\) 550 | * Want to suggest a package? Read the [Contribution Guide](https://github.com/chiraggude/awesome-laravel/blob/master/CONTRIBUTING.md) 551 | * New categories or improvements to the existing categorization are welcome 552 | 553 | ## License 554 | 555 | [![CC BY 4.0](https://licensebuttons.net/l/by/4.0/88x31.png)](https://creativecommons.org/licenses/by/4.0/) 556 | 557 | Awesome Laravel is licensed under a [Creative Commons Attribution 4.0 International License](https://creativecommons.org/licenses/by/4.0/). 558 | --------------------------------------------------------------------------------