@extends('layouts.admin')
@section('title', 'Point Settings')
@section('content')
Point Settings
@if(session('success'))
{{ session('success') }}
@endif
@if($settings)
Edit Settings
| Field |
Value |
@foreach($settings->getAttributes() as $key => $value)
@if(!in_array($key, ['id','created_at','updated_at']))
| {{ $key }} |
{{ $value }} |
@endif
@endforeach
@else
No settings found.
Create Settings
@endif
@endsection