Posts by Denis Vanoni • 73 points
7 posts
- 
		4 votes1 answer221 viewsQ: Multiplication and summation of dynamic inputsNote: Developed with Laravel 5.7. Note 2: This is the view from "New Request". The form will dynamically receive the products according to their previously registered items. Until then ok! The user… 
- 
		0 votes1 answer447 viewsA: Eloquent Relationship / Laravel OnetomanyThanks @adventistaam The problem of VIEW and relationships were solved. Now I’ll get the creates and updates! Model Pedido public function clientes() { return $this->belongsToMany('App\Cliente',… 
- 
		0 votes1 answer447 viewsQ: Eloquent Relationship / Laravel OnetomanyGood afternoon, I am using Laravel 5.7 to create an order system. Therefore I have 3 tables: customers, products and orders. My Database: For now my Migrations are like this: Migrations: Migration… 
- 
		1 votes0 answers637 viewsQ: Menu Adminlte according to the userI’m creating a scheduling system with Laravel and Adminlte. The authentication method I used was not the Laravel Auth or the Adminlte, because I simply used a Controller that uses a method for… 
- 
		-1 votes1 answer389 viewsA: Slow page loading locally after configuring virtual hostsDid you solve it? When I inspect the elements in the browser, the loading takes about 10s and I realized that it is the js that take longer. 
- 
		1 votes0 answers221 viewsQ: CSS and JS of the Laravel project does not work on NGINXconfiguration /etc/Nginx/sites-avaliable/default server { listen 80 default_server; listen [::]:80 default_server; root /var/www/html/; index index.php index.html index.htm index.nginx-debian.html;… 
- 
		1 votes1 answer414 viewsQ: Save in two tables with dynamic inputs (one-to-Many) LaravelI couldn’t make a mistake: Errorexception in Parameterbag.php line 88: array_key_exists(): The first argument should be either a string or an integer My Controller: public function store(Request…