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

Terms And Conditions Policy

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