Deon George
d3d7881e3b
All checks were successful
Create Docker Image / Test Application (x86_64) (push) Successful in 33s
Create Docker Image / Build Docker Image (x86_64) (push) Successful in 1m26s
Create Docker Image / Build Docker Image (arm64) (push) Successful in 3m36s
Create Docker Image / Final Docker Image Manifest (push) Successful in 11s
12 lines
469 B
PHP
12 lines
469 B
PHP
@if(session()->has('updated'))
|
|
<div class="alert alert-success">
|
|
<h4 class="alert-heading"><i class="fas fa-fw fa-thumbs-up"></i> Success!</h4>
|
|
<hr>
|
|
<p>{{ __('Entry updated') }}</p>
|
|
<ul style="list-style-type: square;">
|
|
@foreach (session()->pull('updated') as $key => $o)
|
|
<li><abbr title="{{ $o->description }}">{{ $o->name }}</abbr>: {{ $o->values->map(fn($item,$key)=>$o->render_item_new($key))->join(',') }}</li>
|
|
@endforeach
|
|
</ul>
|
|
</div>
|
|
@endif |