3
0
mirror of https://github.com/snipe/snipe-it.git synced 2026-04-06 07:47:47 +00:00
Files
snipe-it/resources/views/blade/button/note.blade.php

20 lines
649 B
PHP

@props([
'item' => null,
'route' => null,
'wide' => false,
])
@if ($item->deleted_at=='')
@can('update', $item)
<!-- start note button component -->
<a href="#" data-toggle="modal" data-target="#createNoteModal" class="btn btn-sm btn-theme hidden-print{{ $wide == 'true' ? ' btn-block btn-social' : '' }}" data-tooltip="true" data-placement="top" data-title="{{ trans('general.add_note') }}">
<x-icon type="note" class="fa-fw"/>
@if ($wide=='true')
{{ trans('general.add_note') }}
@endif
</a>
<!-- end note button component -->
@endcan
@endif