@extends('layouts.app') @section('content')
Text @include('component.breadcrumb', ['items' => ['Web', 'Text', 'All Texts']])
@include('component.flash')
@foreach($texts as $text) @endforeach
Name Value Translations Actions
{{$text->name}} {{$text->{"value:".fallback_locale()} }}
@foreach(locales_except_fallback() as $code => $properties) @if ($text->hasTranslation($code)) @endif @endforeach @if ($text->hasUntranslatedLocale()) @endif
{{ csrf_field() }} {{ method_field('DELETE') }} @include('component.sweetalert-delete', ['button' => '.btn-delete-'.$text->id, 'form' => '.form-delete-'.$text->id, 'text' => 'This item '.$text->name.' will be permanently deleted'])
@stop