I have the code below that does a check in my controller and it returns me a count of my request.
What I wanted is that in the success of my Jquery ajax I would capture this value to do some javascript conversations in my code.
I'm using t...
I'm trying to do an update and three tables related to Laravel, the past data comes from a single view, and the relationships have already been made, it should be the action update of my controller that is not right below.
Update of Corret...
One month ago everything is working well, until I went deploy a project and ...
When you run the command envoy run deploy , using the settings below ...
@servers([
'mt' => '[email protected]'
])
@task('deploy', ['on' => '...
I am starting my studies in the laravel framework and I have seen that it is very useful to create websites, however, is it possible for me to consume these routes in native android? Because the routes are usually linked to views and not to the...
I have a Laravel application with the following code:
private function todosRegistros($id, $colunas = ['data', 'nivel'])
{
return Leitura::select($colunas)->where('estacao_id', $id);
}
public function _24horas($estacao_id)
{
return...
I made a filter in laravel and it works perfectly but nevertheless it brings all the cities. It does not bring the specific cities of that state. I do not know if this filter has to go there in the laravel controller, how does it work for jquery...
Version 5.3 of Laravel has some news, such as Broadcasting , for example.
I read the documentation, but I could not quite understand it.
I have seen that it has some relation (if direct or indirect, I do not know) with the Websockets. I a...
I have a Laravel application and I deploy it via git to my server. But the problem is that the server always throws the deploy into the public folder , and Laravel originally is meant to stay up .
.htaccess or Laravel itsel...
I have the following code
<strong class="primary-font">Complemento</strong>
<p>{{ $produto->complemento or 'Esta produto não tem complemento' }}</p>
I need the system to display the text 'This product has no compl...