Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created February 10, 2020 22:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/17dcc58b39af29eca66802e70750be5c to your computer and use it in GitHub Desktop.
Save parzibyte/17dcc58b39af29eca66802e70750be5c to your computer and use it in GitHub Desktop.
<?php
$busqueda = "Luis";
$resultado = Alumno::join("asistencia", "asistencia.id_alumno", "=", "alumnos.id")
->select("alumnos.nombre", "asistencia.estado")
->where("alumnos.nombre", "=", $busqueda)
->get();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment