@extends('layouts.app') @section('title', 'Terms & Conditions') @section('content')
@if (session()->has('message')) @endif @if (session()->has('error')) @endif
@csrf
{{ 'Terms & Conditions List' }}
@forelse($terms as $index => $term) @empty @endforelse
Sr. No. Content Status Action
{{ $index + 1 }}
{{ $term->content }}
{{ ucfirst($term->status) }}
No terms found.
@endsection