@extends('admin.tw.layout')
@section('title','Privacy Policies')
@section('content')
@if(Session::has('message'))
{{ Session::get('message') }}
@endif
| Title |
Created |
Actions |
@forelse(($Privacy ?? []) as $p)
|
{{ $p->title }}
|
{{ $p->created_at }} |
|
@empty
| No privacy policies found. |
@endforelse
@endsection