@extends('admin.master_layout')
@section('title')
{{ __('Email Template') }}
@endsection
@section('admin-content')
{{ __('SN') }} |
{{ __('Email Template') }} |
{{ __('Subject') }} |
{{ __('Action') }} |
@foreach ($templates as $index => $item)
{{ ++$index }} |
{{ ucfirst($item->name) }} |
{{ $item->subject }} |
|
@endforeach
@endsection