I am having problems with the facebook services for the developer.
When I work at localhost, it's fine, the issue is when I test it on the host (hostinger). The most visible is the comment box that does not appear directly. But the share button...
I'm doing the following query.
$Products = Product::with('productFiles')->where("name", "like", "%{$request->value}%")->limit(10)->get();
This query calls all the products and an array called "productFiles" WITH DATA. But if I a...
I am using the Laravel Excel library and I have been reading the documentation but it does not say anything to read the excel from a certain row number, that is, I have the first 6 lines of the excel with information and the "title" of each co...
I have the following structure in the routes:
Route::group(['prefix' => 'ventas', 'as' => 'ventas.'], function () {
//INICIO
Route::group(['namespace' => 'Inicio'], function() {
Route::get('inicio', [
'as'...
I have to pass the data of a form, by means of a controller to a new view (different from the form).
I have written the following:
In web.php:
//ruta para meter datos y llamar al controlador:
Route::get('/formalumno','AlumnosController@m...
I've been trying to solve this for a few days and I do not get it,
I am doing the logic to delete by ajax records but it does not work for me, if I go to the section of firefox for developers, in the network tab, once I make the request, it does...
My form is not activated, I have never done this, so I need a little help.
At the time of updating, nothing happens.
Modal:
<div class="modal fade" id="modalUpdate{{$o->idOrder}}" tabindex="-1" role="dialog" aria-labelledby="myMo...
I have a concern regarding the isset function, I have the following lines.
$usuarios=usuarios::where("usuario_ad", 'danielad')->get();
$prueba=isset($usuarios);
dd($prueba);
With this, the query throws records to...
I have a function where I query a table with SQL and the result I see it, it works fine but I need to count the number of records that table has and I get an error.
public function myFunction($data)
{
$data = DB::table('users')
-&...