2019-04-14 08:01:51 -04:00
|
|
|
{{--
|
|
|
|
$target - CSS selector of items to expand
|
|
|
|
$key - Unique key for checking existing stored state.
|
|
|
|
--}}
|
|
|
|
<?php $isOpen = setting()->getForCurrentUser('section_expansion#'. $key); ?>
|
2019-08-24 13:26:28 -04:00
|
|
|
<button type="button" expand-toggle="{{ $target }}"
|
2019-08-04 09:26:39 -04:00
|
|
|
expand-toggle-update-endpoint="{{ url('/settings/users/'. $currentUser->id .'/update-expansion-preference/' . $key) }}"
|
2019-04-14 08:01:51 -04:00
|
|
|
expand-toggle-is-open="{{ $isOpen ? 'yes' : 'no' }}"
|
|
|
|
class="text-muted icon-list-item text-primary">
|
|
|
|
<span>@icon('expand-text')</span>
|
|
|
|
<span>{{ trans('common.toggle_details') }}</span>
|
2019-08-24 13:26:28 -04:00
|
|
|
</button>
|
2019-04-14 08:01:51 -04:00
|
|
|
@if($isOpen)
|
|
|
|
@push('head')
|
|
|
|
<style>
|
|
|
|
{{ $target }} {display: block;}
|
|
|
|
</style>
|
|
|
|
@endpush
|
|
|
|
@endif
|