I have a form which you can see in Image 1:
This form is called requests, it is a form where requests for authorization are received to be able to repair certain medical equipment, after that request is received an authorization is issued...
I'm trying to access the id of this element sent by json in handlebars.js
{
"status":"success",
"message": {
"message":"sdasdasasd",
"type":"photo",
"post_id":55,
"title":"",
"description":"",...
I am looking in one form or another for data in my columns
$search = Notificaciones::
where('canal', 'LIKE', '%'.$canal.'%')
->where('region','LIKE', '%'.$region.'%')
->where('cadena','LIKE...
I am using datatables server side of Yajra for Laravel and I have the following:
var table = $("#dt_user_draw").DataTable({
destroy: true,
processing: true,
responsive: true,
serverSide: true,
ordering: false,
"ajax": {
"meth...
I have to create an array in PHP with information that comes from a json.
Currently I have my code that creates an array where it keeps the date "10-15-2018" with its total number of messages.
Now I need to modify my array to be able to ca...
I have been trying to run my site that is published on the web but I was giving this error:
chdir error (): No such file or directory (errno 2)
however I did what I got in this post from SO , I ran again% e_co% and now it shows me ano...
How do I pass parameters, data from the database? According to the documentation, the examples are with static value arrays, but I would like to obtain this information from a data source, register people by their sex and age, and then graph it....
My problem is that I have a many to many relationship between the subject and teacher table, therefore, I have a detail or intermediate table ( teacherSubject ).
I must show in Teacher the subject blade teacher that they are related...
I create a pdf with the package barryvdh / laravel-dompdf as follows:
public function generarPdf(Request $req) {
$datos = $req->data;
Debugbar::info($datos);
$archivo = storage_path().'\pdf\equipos\'.$datos[1].'-'.$datos[2]....
I have a project in Laravel 5.4 and I want to use the authentication system that it brings, but with the information that is found in another table that has already been created through the migrations.
The truth is that I have surfed all over...