configuracion de nfc y export exel

This commit is contained in:
Jose Sanchez
2023-08-08 11:01:11 -04:00
parent 79422c66b8
commit edd191b4be
8 changed files with 495 additions and 2 deletions

View File

@@ -17,6 +17,7 @@ use Mail;
use App\Mail\InvoiceEmailManager;
use App\Http\Resources\PosProductCollection;
use App\Models\Country;
use App\Models\NfcVoucher;
use App\Models\State;
use App\Utility\CategoryUtility;
use App\Utility\FontUtility;
@@ -365,7 +366,12 @@ class PosController extends Controller
public function configuration()
{
return view('seller.pos.pos_activation');
//AQUI AGREGO LA CONSULTA donde traigo los comprobantes desde el ultimo que agrego que se muestre primero
$nfc_vouchers = $nfc_vouchers = NfcVoucher::latest()->get();
return view('seller.pos.pos_activation', compact('nfc_vouchers'));
}
public function invoice($id)