@extends('layouts.app')
@section('title_full', __('Saved Replies').' - '.$mailbox->name)
@section('body_attrs')@parent data-mailbox_id="{{ $mailbox->id }}"@endsection
@section('sidebar')
@include('partials/sidebar_menu_toggle')
@include('mailboxes/sidebar_menu')
@endsection
@section('content')
@if (count($saved_replies))
@include('savedreplies::partials/saved_replies_tree', ['saved_replies' => \SavedReply::listToTree($saved_replies)])
@else
@include('partials/empty', ['icon' => 'comment', 'empty_header' => __("Save time with saved replies!"), 'empty_text' => __('A saved reply is a snippet of text that can be quickly added to the editor when replying to a customer.')])
@endif
@endsection
@include('partials/editor')
@section('javascript')
@parent
initSavedReplies();
@endsection