$ingreso=DB::table('INGRESO as i')
->join('PERSONA as p','i.ID_PER','=','p.ID_PER')
->join('DETALLE_INGRESO as di','i.ID_ING','=','di.ID_ING')
->select('i.ID_ING','i.FECHA_HORA','p.nombre','i.TIP_COMP'...
I have the following link:
<a href="http://www.codigos-qr.com/barcode/barcode.processor.php?encode=CODE128&bdata={{$row->code}}w&height=40&scale=2&showData=1&Genrate=" title="Generar Codigo" target="_blank">{{ $row...
I work at laravel, and I need to do the following if a plan is registered if the date of the bd is greater than the current date. I've tried it this way:
$fechaFin = $buscar->fechaFinal; //obtenieno el dato de la base de datos
and static...
Good evening to those who read me, want to help me, I want to capture the values of a row of a table and display them in a modal
aui I have the table that comes from the database ...
<tbody id="myTable">
@foreach($act...
I am trying to see the name and the id of the categories of the products and I am generating the following error.
"Trying to get property 'category_id' of non-object (View: C: \ Users \ RaFaE \ blog \ resources \ views \ admin \ article \...
Good evening I'm using laravel 5.6 and I want to make a data request by ajax using an id and with this I get the result of two queries. My questions is how I can respond to the ajax request with the result of the consultations.
These are my q...
Good afternoon, I am using Laravel 5.6 and I have just applied middleware to my routes, it does the filtering in the following way:
public function handle($request, Closure $next)
{
$tipoUsuario=$this->auth->user()->id_role;...
Good morning, thanks in advance for the help you could give me.
I'm creating a page for issuing an invoice in laravel with vue and axios.
Before sending the invoice to record, I must verify if the total value of the invoice makes you a winner, t...
I am using the php word library in my project with laravel, it works correctly, what I do is use a word template and add values using TemplateProcessor, the problem that I present is when I want to write a dynamic array in the word template, tha...
Well I get the data of a table from my BD and I send them to a select. When I want to save the data of the select to the database I get the error that the field matters has no value
But when checking the data that is sent by post it turns...