1
0
mirror of https://github.com/devcode-it/openstamanager.git synced 2025-06-05 22:09:38 +02:00
Files
openstamanager/resources/views/modules/title.blade.php
Dasc3er 06439a275f Introduzione simulazione dei widget
Nuove strutture per gestire i widget del gestionale, base per la gestione deile stampe e miglioramento del sistema di simulazione delle richieste al gestionale legacy.
2021-03-15 10:43:14 +01:00

18 lines
635 B
PHP

@if(!empty($module->help))
<span class="tip" title="{{ $module->help }}" data-position="bottom">
<i class="{{ $module->icon }}"></i> {{ $module->title }}
<i class="fa fa-question-circle-o" style="font-size:0.75em"></i>
</span>
@else
<i class="{{ $module->icon }}"></i> {{ $module->title }}
@endif
{{-- $module->hasAddFile() and --}}
@if($module->permission == 'rw')
<!-- Pulsante "Aggiungi" solo se la struttura lo supporta -->
<button type="button" class="btn btn-primary" data-toggle="modal" data-title="{{ tr('Aggiungi') }}..." data-href="{{ 'test' }}">
<i class="fa fa-plus"></i>
</button>
@endif