@extends('layouts.backend') @section('title') @lang('backend.screens_views.page_title') @endsection @section('modals') @include('backend.partials.modals') @endsection @section('content')

@lang('backend.screens_views.list')

@include('backend.partials.deleted') @include('backend.partials.success')
@foreach($chapterScreens as $screen)
@if($screen->type == 0) @elseif($screen->type == 1 OR $screen->type == 2) @else @endif

{{$screen->title }}

@lang('backend.tables.type'): @if($screen->type == 0) @lang('backend.buttons.content') @elseif($screen->type == 1) @lang('backend.buttons.blocks1') @elseif($screen->type == 2) @lang('backend.buttons.blocks2') @else @lang('backend.buttons.diagnostic') @endif

@if($screen->type == 0) @elseif($screen->type == 1 OR $screen->type == 2) @else @endif

@endforeach
{!! $chapterScreens->links() !!}
@endsection