@extends('admin.layouts.app') @section('title', '메일 템플릿') @section('page_title', '메일 템플릿') @section('page_desc', '스킨 + 제목/본문 템플릿 관리') @push('head') @endpush @section('content')
활성
검색
새 템플릿
총 {{ $templates->total() }}건
@forelse($templates as $t) @empty @endforelse
ID 활성 Code Title Subject Skin Body
{{ $t->id }} {{ (int)$t->is_active === 1 ? 'Y' : 'N' }} {{ $t->code }} {{ $t->title }} {{ $t->subject_tpl ?? '-' }} {{ $t->skin_key ?? '-' }} {{ $t->body_tpl }} 수정
데이터가 없습니다.
{{ $templates->links() }}
@endsection