@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')
@include('partials/flash_messages')
@if (count($folders))
@foreach ($folders as $folder)
@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