Configurazione Barcode e test sulla visualizzazione delle categorie.
This commit is contained in:
parent
036981f16e
commit
8928383f95
@ -162,7 +162,7 @@ return [
|
|||||||
Illuminate\Validation\ValidationServiceProvider::class,
|
Illuminate\Validation\ValidationServiceProvider::class,
|
||||||
Illuminate\View\ViewServiceProvider::class,
|
Illuminate\View\ViewServiceProvider::class,
|
||||||
Creativeorange\Gravatar\GravatarServiceProvider::class,
|
Creativeorange\Gravatar\GravatarServiceProvider::class,
|
||||||
|
Milon\Barcode\BarcodeServiceProvider::class,
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Package Service Providers...
|
* Package Service Providers...
|
||||||
@ -234,7 +234,8 @@ return [
|
|||||||
'View' => Illuminate\Support\Facades\View::class,
|
'View' => Illuminate\Support\Facades\View::class,
|
||||||
'FastExcel' => Rap2hpoutre\FastExcel\Facades\FastExcel::class,
|
'FastExcel' => Rap2hpoutre\FastExcel\Facades\FastExcel::class,
|
||||||
'Gravatar' => Creativeorange\Gravatar\Facade\Gravatar::class,
|
'Gravatar' => Creativeorange\Gravatar\Facade\Gravatar::class,
|
||||||
|
'DNS1D' => Milon\Barcode\Facades\DNS1DFacade::class,
|
||||||
|
'DNS2D' => Milon\Barcode\Facades\DNS2DFacade::class,
|
||||||
],
|
],
|
||||||
|
|
||||||
];
|
];
|
||||||
|
5
config/barcode.php
Normal file
5
config/barcode.php
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
return [
|
||||||
|
'store_path' => public_path("/"),
|
||||||
|
];
|
@ -24,6 +24,7 @@
|
|||||||
<th>Categoria</th>
|
<th>Categoria</th>
|
||||||
<th>Classificazione</th>
|
<th>Classificazione</th>
|
||||||
<th>Azione</th>
|
<th>Azione</th>
|
||||||
|
<!--<th>Test</th>-->
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
@ -44,9 +45,11 @@
|
|||||||
<button class="btn btn-warning btn-detail open_modal"
|
<button class="btn btn-warning btn-detail open_modal"
|
||||||
value="{{$categoria->id}}">Edit</button> <a
|
value="{{$categoria->id}}">Edit</button> <a
|
||||||
class="btn btn-danger"
|
class="btn btn-danger"
|
||||||
href="/admin/categorie/delete?id={{ $categoria->id}}"><i
|
href="/admin/categorie/delete?id={{ $categoria->id}}">Canc</a>
|
||||||
class="fa fa-trash-o fa-fw"></i></a>
|
|
||||||
</td>
|
</td>
|
||||||
|
<!--<td>
|
||||||
|
<img src="data:image/png;base64,{{ DNS2D::getBarcodePNG('https://gestionale.lavorain.cloud/admin/movimenti/report/movimentibycat?cat='.$categoria->id, 'QRCODE');}}" alt="barcode" />
|
||||||
|
</td>-->
|
||||||
</tr>
|
</tr>
|
||||||
@endforeach
|
@endforeach
|
||||||
</tbody>
|
</tbody>
|
||||||
|
Loading…
Reference in New Issue
Block a user