@extends('includes.layout') @section('content') @php $resww = DB::table('comm_mail_templates')->where('show_hide', '0')->get(); $resww333 = ''; if($_GET['id'] ?? '' && $_GET['id'] != ''){ $resww333 = DB::table('comm_mail_templates')->where('id', $_GET['id'])->get(); } @endphp

Email Templates


 
 
@if(count($resww) > 0) @foreach($resww as $items) @endforeach @else @endif
Name Content Modify
{{$items->name}} {{ Str::limit($items->temp, 60, '...') }}
No data available in table
@endsection