@extends(config('dotenveditor.template', 'dotenv-editor::master')) {{-- Feel free to extend your custom wrapping view. All needed files are included within this file, so nothing could break if you extend your own master view. --}} @section('content')

{{ trans('dotenv-editor::views.title') }}



{{-- Error-Container --}}
{{-- VueJS-Errors --}} {{-- Errors from POST-Requests --}} @if(session('dotenv')) @endif
{{-- Overview --}}

{{ trans('dotenv-editor::views.overview_title') }}

{!! trans('dotenv-editor::views.overview_text') !!}

{{ trans('dotenv-editor::views.overview_button') }}

{{ trans('dotenv-editor::views.overview_table_key') }} {{ trans('dotenv-editor::views.overview_table_value') }} {{ trans('dotenv-editor::views.overview_table_options') }}
@{{ entry.key }} @{{ entry.value }}
{{-- Modal delete --}} {{-- Modal edit --}}
{{-- Add new --}}

{!! trans('dotenv-editor::views.addnew_title') !!}

{!! trans('dotenv-editor::views.addnew_text') !!}

{{-- Backups --}}
{{-- Create Backup --}} {{-- List of available Backups --}}

{!! trans('dotenv-editor::views.backup_title_two') !!}

{!! trans('dotenv-editor::views.backup_restore_text') !!}

{!! trans('dotenv-editor::views.backup_restore_warning') !!}

@if(!$backups)

{!! trans('dotenv-editor::views.backup_no_backups') !!}

@endif
@if($backups)
@foreach($backups as $backup) @endforeach
{!! trans('dotenv-editor::views.backup_table_nr') !!} {!! trans('dotenv-editor::views.backup_table_date') !!} {!! trans('dotenv-editor::views.backup_table_options') !!}
{{ $c++ }} {{ $backup['formatted'] }}
@endif
@if($backups) {{-- Details Modal --}} @endif
{{-- Upload --}}

{!! trans('dotenv-editor::views.upload_title') !!}

{!! trans('dotenv-editor::views.upload_text') !!}
{!! trans('dotenv-editor::views.upload_warning') !!}

@endsection