9999, 'customer' => 9999, ]; if ($type == 'user') { $count = User::group('user')->count('id'); if ($count > $data['user']) { abort_error('无法新建用户授权许可不足。'); } } else if ($type == 'customer') { $count = Customer::count('id'); if ($count > $data['customer']) { abort_error('无法新建客户授权许可不足。'); } } } /** * 判断是否演示模式 */ public static function demoCheck($table = null) { if (env('DEMO_VERSION') == false) { return; } $demoDatas = ['user','system_log']; if (in_array($table, $demoDatas)) { return; } abort_error('演示模式,不允许本操作。'); } }