Esempio n. 1
0
 public static function getAllCurrentPromptTypes()
 {
     $types = [];
     $types = Permission::whereNull('deleted_at')->select('prompt_type')->groupBy('prompt_type')->get();
     return $types;
 }