a3fcc98d6e
Changes their endpoints and remove the user id from the URLs. Simplifies list changes to share a single endpoint, which aligns it to the behaviour of the existing sort preference endpoint. Also added test to ensure user preferences are deleted on user delete.
18 lines
No EOL
705 B
PHP
18 lines
No EOL
705 B
PHP
<div>
|
|
<form action="{{ url("/preferences/change-view/" . $type) }}" method="POST" class="inline">
|
|
{!! csrf_field() !!}
|
|
{!! method_field('PATCH') !!}
|
|
|
|
@if ($view === 'list')
|
|
<button type="submit" name="view" value="grid" class="icon-list-item text-primary">
|
|
<span class="icon">@icon('grid')</span>
|
|
<span>{{ trans('common.grid_view') }}</span>
|
|
</button>
|
|
@else
|
|
<button type="submit" name="view" value="list" class="icon-list-item text-primary">
|
|
<span>@icon('list')</span>
|
|
<span>{{ trans('common.list_view') }}</span>
|
|
</button>
|
|
@endif
|
|
</form>
|
|
</div> |