@extends('user::layouts.master') @section('content')

Manage Setting

@if(isset($_REQUEST['login']) && $_REQUEST['login'] =1 )
Please change your account password to continue using secure site.
@endif

List Settings

@if($settings->count() > 0) @php $i = 1; @endphp @foreach($settings as $setting) @php $i++; @endphp @endforeach @else @endif
Title Constant Value Actions
{{$setting->title}} {{$setting->slug}} {{$setting->config_value}}
Record Not Available

Important Rules

For each config settings that would be added to the system, make sure it has these constant/slug:

  • SYSTEM_APPLICATION_NAME - Will be replaced by website title from the admin settings.
  • ADMIN_EMAIL - Will be replaced by admin email from the admin settings.
  • FROM_EMAIL - Will be replaced by email from the admin settings.
  • WEBSITE_OWNER - Will be replaced by Owner name from admin settings.
  • CONTACT_ADDRESS - Will be replaced by front date time format from admin settings.
  • DEVELOPMENT_MODE - Will be replaced by debug mode from admin settings.
@stop