@extends('admin/layouts/dashboard') @section('breadcrumbs', Breadcrumbs::render(Route::currentRouteName(), $param)) @section('content')
| 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 }} |