@extends('layouts/app') @section('content')
@if(Session::has('message'))
Success
{{ Session::get('message') }} @php Session::forget('message'); @endphp
@endif
@if(!empty($configs)) @foreach($configs as $config) @endforeach
Name
Edit {{$config->config_name}}
@else

No data found

@endif
@csrf
@endsection