@extends('layouts.app') @section('title_full', __('Custom Folders').' - '.$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')
{{ __('Custom Folders') }}{{ __('New Folder') }}
@include('partials/flash_messages') @if (count($folders))
@foreach ($folders as $folder)
@include('customfolders::partials/form_update', ['mode' => 'update'])
{{ __('Delete') }}
@endforeach
@else @include('partials/empty', ['icon' => 'folder-close', 'empty_header' => __("Create custom folders and organize conversations!"), 'empty_text' => '']) @endif @endsection @section('javascript') @parent initCustomFoldersAdmin('{{ __('Delete this folder?') }}'); @endsection