@extends('layouts.layout')
@section('title')
{{ __($title) }}
@endsection
@section('sidebar')
@include('layouts.sidebar', ['sidebar' => Menu::get('sidebar_task')])
@endsection
@section('breadcrumbs')
@include('shared.breadcrumbs', [
'routes' => [
Route::currentRouteName() === 'inbox' ? __('Inbox') : __('Tasks') => Route::currentRouteName() === 'inbox' ? route('inbox') : route('tasks.index')
],
])
@endsection
@section('content')
{{ __('Inbox Rules') }}
{!! __(
'Inbox Rules act as your personal task manager. You tell them what to look for, and they take care of things automatically.',
) !!}
@if (
(Auth::user()->is_administrator || Auth::user()->hasPermission('edit-screens')) &&
Route::has('package.savedsearch.defaults.edit'))
@endif
@endsection
@section('js')
@foreach($manager->getScripts() as $script)
@endforeach
@endsection
@section('css')
@endsection