@extends('admin/layouts/dashboard') @section('breadcrumbs', Breadcrumbs::render(Route::currentRouteName(), $param)) @section('content')
id) ) }}" class="btn btn-success btn-sm"> id) ) }}" class="btn btn-danger btn-sm" onclick="return confirm('Вы действительно хотите удалить эту переменную?')">
ID {{ $param->id }}
Название {{ $param->name }}
Идентификатор {{ $param->slug }}
Тип {{ $param->type }}
Значение @if($param->type === 'list')
@php print_r(json_decode($param->value, true)) @endphp
@endif @if($param->type === 'file') {{ $param->value }} @endif @if($param->type === 'text') {{ $param->value }} @endif @if($param->type === 'html')
{{ str_limit($param->value, 64) }}
@endif
Создано {{ $param->created_at }}
Изменено {{ $param->updated_at }}
@endsection