@extends('layouts.layoutMaster') @section('title', 'Config Detail') @php $breadcrumbs = [ ['url' => route('dashboard'), 'label' => 'Dashboard'], ['url' => route('config.index'), 'label' => 'Config'], ['url' => route('config.show', ['config' => $model->id]), 'label' => $model->key], ]; @endphp @section('content')
Config Details
@can('config.update') Edit @endcan
Config Information
Key {{ $model->key }}
Value @if ($model->value)
{{ $model->value }}
@else - @endif
Created: {{ $model->created_at?->format('d/m/Y H:i') ?? '-' }} @if ($model->createdBy) by {{ $model->createdBy->name }} @endif
Last Updated: {{ $model->updated_at?->format('d/m/Y H:i') ?? '-' }} @if ($model->updatedBy) by {{ $model->updatedBy->name }} @endif
@endsection