@if (Session::has('flash_success'))
{{ Session::get('flash_success') }}
@endif
@if (Session::has('flash_error'))
{{ Session::get('flash_error') }}
@endif
| # |
Heading |
Content |
Action |
@forelse ($cookies as $key => $cookie)
| {{ $key + 1 }} |
{{ $cookie->heading }} |
{!! \Illuminate\Support\Str::limit(strip_tags($cookie->content), 450) !!} |
|
@empty
|
No cookie policies found.
|
@endforelse
@if(method_exists($cookies, 'links'))
{{ $cookies->links('pagination::bootstrap-4') }}
@endif