@extends('highSuperAdmin.layout') @section('title', 'SMS Templates') @section('page-name', 'SMS Templates') @section('page-detail', 'Manage SMS templates for customer messages') @section('body')
Templates
New Template
@if(session('success'))
{{ session('success') }}
@endif @if($templates->isEmpty())

No templates yet.

@else
@foreach($templates as $t) @endforeach
Name Body Actions
{{ $t->name }} {{ Str::limit($t->body, 80) }}
@csrf @method('DELETE')
{{ $templates->links() }} @endif
@endsection