Posts by Jonathan Borges • 216 points
3 posts
-
1
votes1
answer462
viewsA: Json with relationship Manytomany - Laravel
First by Laravel convention, the name of your table Many to Many should be singular and in alphabetical order. Rename your table to produto_variacao In your Product model (table name: products)…
-
6
votes1
answer4611
viewsA: How to add a Foreign key with Migration?
Simple as that: Schema::create('usuarios', function (Blueprint $bp) { $bp->increments('id'); $bp->integer('nivel_id')->unsigned();…
-
3
votes1
answer373
viewsA: Error when creating Laravel project
Simple, to resolve go to your Composer.json in the folder C:\users\myname\appdata\Roaming\Composer\composer.json (more or less that).` Modify: "laravel/installer": "^1.3" for "laravel/installer":…
laravelanswered Jonathan Borges 216