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.
- Host: GitHub
- URL: https://github.com/venkat-sci/learning
- Owner: venkat-sci
- License: mit
- Created: 2018-01-07T07:24:51.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2018-01-07T08:18:03.000Z (over 8 years ago)
- Last Synced: 2025-01-21T23:15:03.437Z (over 1 year ago)
- Language: PHP
- Size: 168 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: LICENSE
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);
}