Questions tagged as 'laravel'

0
answers

Impossible to create the root directory

I am developing a CRUD, in this same I need to store the img of the users but laravel throws me this error:    Impossible to create the root directory 'local' => [ 'driver' => 'local', 'root' => storage_pat...
asked by 06.04.2018 / 23:52
1
answer

How can I pass an array from one script to another?

You see, I have a sales system in a hosting, which as proof of sale printed the ticket, for obvious reasons I can not print from the hosting, so I use XAMPP as an intermediary, I send the data and this is responsible to print the ticket, everyth...
asked by 10.04.2018 / 20:37
0
answers

Problems to consume Web service SOAP https

I have a WS, but when I invoke one of its methods I get a message:protected =>Forbiden message, but when I test the WS with the SOAP UI app if I can access its methods and perform tests, it returns the corresponding values. Accordin...
asked by 03.04.2018 / 18:07
1
answer

Laravel Ask WHERE NOT IN

I have the following SQL query SELECT * from autor where autor.Id_autor not in (select ca.fk_autor from cntrl_autor ca join autor a on a.Id_autor = ca.fk_autor where ca.fk_doc=7993) How can I convert it to how the...
asked by 30.03.2018 / 00:14
0
answers

consume web services with ajax

I have the following form. @section('content') <div class='panel panel-default'> <div class='panel-heading'>agregar estudiante</div> <div class='panel-body'> <form role="form"> <div...
asked by 30.03.2018 / 00:13
0
answers

How to display the validated error texts (laravel) in html?

I need to show the errors when validating the data, and I only show information that I do not need as well.    The given data was invalid. {"PERS_varDNI": ["The DNI must have 8   digits "]," PERS_varApPaterno ": [" Enter the Paternal Last Nam...
asked by 26.03.2018 / 17:33
0
answers

Problem when deploy with Laravel

I'm trying to deploy my application created with laravel, but when I try to upload it to my VPS in DigitalOcean , nothing is shown, you can see it in www.d-supplier.com I do not know what files you need to help me solve my problem b...
asked by 22.03.2018 / 06:54
1
answer

Call the field of a related table from many to many

I need to pull the field from a related table of many many when I show in a view. I have two related tables from many to many, one is: cliente and the other is servicio . These are my models: Service table model : <?php...
asked by 24.03.2018 / 19:20
1
answer

Block user

I need to create the block user section in an app I'm doing, so I did the following. 1.- Add a new boolean field to the USER table $table->boolean('isBlocked')->default(0); 2.- Then in the LoginController controller protected fun...
asked by 20.03.2018 / 22:08
1
answer

Show values in a Select combo in the view

my problem is that I can not show the value of the user's gender that already has a value assigned, this I want to show it in the select combo of the profile view, the select combo only shows me the default values but not the value already assig...
asked by 21.03.2018 / 21:26