From 23e416fd881101301ae3b4eae6debdf711aa23a7 Mon Sep 17 00:00:00 2001 From: snipe Date: Wed, 18 May 2016 18:24:28 -0700 Subject: [PATCH] Make site name required --- app/Models/Setting.php | 1 + 1 file changed, 1 insertion(+) diff --git a/app/Models/Setting.php b/app/Models/Setting.php index 51ce6e809b..4d2dc9bbf4 100755 --- a/app/Models/Setting.php +++ b/app/Models/Setting.php @@ -11,6 +11,7 @@ class Setting extends Model use ValidatingTrait; protected $rules = [ + "site_name" => 'required|min:1', "brand" => 'required|min:1|numeric', "qr_text" => 'min:1|max:31', "custom_css" => 'string',