@extends ('layouts.in') @section ('body')
@foreach ($list as $row) @php ($link = route('configuration.update', $row->id)) @endforeach
{{ __('configuration-index.key') }} {{ __('configuration-index.value') }} {{ __('configuration-index.description') }} {{ __('configuration-index.created_at') }} {{ __('configuration-index.updated_at') }}
{{ $row->key }} {{ $row->value }} {{ $row->description }} @dateWithUserTimezone($row->created_at) @dateWithUserTimezone($row->updated_at)
@stop