Base
This commit is contained in:
19
app/Controller/Devoluciones.php
Normal file
19
app/Controller/Devoluciones.php
Normal file
@ -0,0 +1,19 @@
|
||||
<?php
|
||||
namespace App\Controller;
|
||||
|
||||
use App\Definition\Controller;
|
||||
use Incoviba\old\Venta\Venta;
|
||||
|
||||
class Devoluciones
|
||||
{
|
||||
use Controller;
|
||||
|
||||
public static function liquidacion()
|
||||
{
|
||||
$id = get('venta');
|
||||
$venta = model(Venta::class)->findOne($id);
|
||||
|
||||
return view('print.devolucion', compact('venta'));
|
||||
}
|
||||
}
|
||||
?>
|
Reference in New Issue
Block a user