An open API service indexing awesome lists of open source software.

https://github.com/venkat-sci/learning

This is basic set of code for my reference for all my laravel framework learnings, i will update all my learning as simple as possible here for my future reference and any one can use it.
https://github.com/venkat-sci/learning

Last synced: over 1 year ago
JSON representation

This is basic set of code for my reference for all my laravel framework learnings, i will update all my learning as simple as possible here for my future reference and any one can use it.

Awesome Lists containing this project

README

          

## Common issues which i have encountered while learning

- AppServiceProvider mysql data size error
- [FiX]:


App/Providers/AppServiceProvider

use Illuminate\Support\Facades\Schema;

public function boot()
{
Schema::defaultStringLength(191);
}