15 lines
293 B
PHP
15 lines
293 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\Http\Controllers;
|
||
|
|
||
|
use App\GrupoDeCompra;
|
||
|
|
||
|
class ComprasController
|
||
|
{
|
||
|
public function pedidos() {
|
||
|
GrupoDeCompra::exportarTodosLosPedidosEnCSV();
|
||
|
$file = resource_path('csv/exports/total-pedidos.csv');
|
||
|
return response()->download($file);
|
||
|
}
|
||
|
}
|