@extends('admin.layout.app') @section('content')

Privacy Policy

@if(count($privacy) == 0) Add @endif
@if (session('flash_success'))
{{ session('flash_success') }}
@endif @if (session('flash_error'))
{{ session('flash_error') }}
@endif
@forelse ($privacy as $key => $item) @empty @endforelse
# Heading Content Action
{{ $key + 1 }} {{ $item->heading }} {!! \Illuminate\Support\Str::limit(strip_tags($item->content), 450) !!} Edit
No records found.
{{-- @if(method_exists($privacy, 'links'))
{{ $privacy->links('pagination::bootstrap-4') }}
@endif --}}
@endsection