Files
opensem/app/Http/Controllers/Shop/InvoiceController.php
Ludovic CANDELLIER 53feef282f coding style
2023-09-13 22:53:37 +02:00

36 lines
827 B
PHP

<?php
namespace App\Http\Controllers\Shop;
use App\Http\Controllers\Controller;
use App\Repositories\Core\PDF;
use App\Repositories\Shop\Invoices;
class InvoiceController extends Controller
{
public function index()
{
//
}
public function show($uuid)
{
$data = Invoices::getByUUID($uuid);
return view('Shop.Invoices.show', $data);
}
public function pdf($uuid)
{
\Debugbar::disable();
$data['invoice'] = Invoices::getByUUID($uuid);
$filename = 'invoice-'.$uuid.'.pdf';
$html = view('Shop.Invoices.pdf', $data)->toHtml();
// $html = '<h1>Hello world!</h1>';
// return PDF::convertHTML($html);
// return view('Shop.Invoices.pdf', $data);
return PDF::view('Shop.Invoices.pdf', $data, $filename);
}
}