@extends('admin.layout.app') @section('style') @endsection @section('content') @php function getSettingValue($key) { $row = \App\Setting::where('key', $key)->first(); if ($row) { return $row->value; } return ''; } @endphp