The error returned is as follows: Key file permissions are not correct, should be 600 or 660 instead of 644
Can someone help me solve this error? I know I have to switch to 600 or 644, but I do not know how to
In my view , welcome.blade.php I'm getting a parser error in the following HTML snippet:
<div class="single_service_left">
<img src="{{ asset('images/flaticon4.png') }}" alt="" />
</div>
Until then it seem...
I used the following code JQuery to avoid reloading the page when inserting a record in the database. actually stopped reloading, but it is not allowing you to save the records to the bank.
$( "#btnAtividades" ).click(function( event )...
I need to get a parameter passed in the url. Ex: lugar.php?city=São Paulo .
I need to get to São Paulo.
I tried but it is not working, with the code below:
$data['items'] = $results['query']
->where('city',Reques...
I need an if to verify 2 values of the register and 2 of the bank, if both are equal should not occur the registration.
<div class="container-fluid">
<form action="adiciona" method="post" >
<div class="form-group has...
I have a page that contains mosaic of images with a button and when I click I open a popover. Until then okay, because this mosaic is generated by blade.php , of laravel 5.
But I change the mosaic from the filters on the page itself and the pop...
I have a method that invokes the view as follows:
return view('auth.register',[
'teachers' => $this->user->mentors()->lists('name','id'),
]);
And in the view, select using {{ Form::select() }} occurs perfectly....
I need to generate a default password for users of my login table. The password must be the same for all users for first access to the system. The registration already exists, but I have to modify the passwords. The problem happens when I upda...
Hello, how are you? Why Laravel is not picking up the object in the view. Searching the session I can get the data.
/* ProdutoController */
public function deleta($id){
$prod = Produto::find($id);
$prod->delete();
return redire...
I'm populating a checkbox with the bank information, I'm trying to get it to read all checked checkboxes.
Controller
public function store(RequestProduto $request)
{
$data = new Produtos;
$data->nome_visivel = $request->no...