@extends("layouts.app", ["title" => "Settings List"])
@section("content_body")
@include("shared.partials.page-title", ["subtitle" => "Administration", "title" => "Settings"])
| ID |
Key |
Value |
Group |
Type |
Actions |
@forelse ($settings as $setting)
| {{ $setting->id }} |
{{ $setting->key }} |
{{ Str::limit($setting->value, 50) }} |
{{ $setting->group }} |
{{ $setting->type }} |
|
@empty
| No settings configured. |
@endforelse
{{ $settings->links() }}
@endsection