@@ -91,7 +91,7 @@ discard block |
||
91 | 91 | $name = $this->getName(); |
92 | 92 | $query = request()->query(); |
93 | 93 | |
94 | - $this->prefix(function ($_, $original) use ($name, $query) { |
|
94 | + $this->prefix(function($_, $original) use ($name, $query) { |
|
95 | 95 | Arr::set($query, $name, $original); |
96 | 96 | |
97 | 97 | $url = request()->fullUrlWithQuery($query); |
@@ -124,7 +124,7 @@ discard block |
||
124 | 124 | */ |
125 | 125 | public function using(array $values, $default = null) |
126 | 126 | { |
127 | - return $this->display(function ($value) use ($values, $default) { |
|
127 | + return $this->display(function($value) use ($values, $default) { |
|
128 | 128 | if (is_null($value)) { |
129 | 129 | return $default; |
130 | 130 | } |
@@ -142,7 +142,7 @@ discard block |
||
142 | 142 | */ |
143 | 143 | public function replace(array $replacements) |
144 | 144 | { |
145 | - return $this->display(function ($value) use ($replacements) { |
|
145 | + return $this->display(function($value) use ($replacements) { |
|
146 | 146 | if (isset($replacements[$value])) { |
147 | 147 | return $replacements[$value]; |
148 | 148 | } |
@@ -160,13 +160,13 @@ discard block |
||
160 | 160 | public function repeat($input, $seperator = '') |
161 | 161 | { |
162 | 162 | if (is_string($input)) { |
163 | - $input = function () use ($input) { |
|
163 | + $input = function() use ($input) { |
|
164 | 164 | return $input; |
165 | 165 | }; |
166 | 166 | } |
167 | 167 | |
168 | 168 | if ($input instanceof Closure) { |
169 | - return $this->display(function ($value) use ($input, $seperator) { |
|
169 | + return $this->display(function($value) use ($input, $seperator) { |
|
170 | 170 | return join($seperator, array_fill(0, (int) $value, $input->call($this, [$value]))); |
171 | 171 | }); |
172 | 172 | } |
@@ -183,7 +183,7 @@ discard block |
||
183 | 183 | */ |
184 | 184 | public function view($view) |
185 | 185 | { |
186 | - return $this->display(function ($value) use ($view) { |
|
186 | + return $this->display(function($value) use ($view) { |
|
187 | 187 | $model = $this; |
188 | 188 | |
189 | 189 | return view($view, compact('model', 'value'))->render(); |
@@ -197,7 +197,7 @@ discard block |
||
197 | 197 | */ |
198 | 198 | public function filesize() |
199 | 199 | { |
200 | - return $this->display(function ($value) { |
|
200 | + return $this->display(function($value) { |
|
201 | 201 | return file_size($value); |
202 | 202 | }); |
203 | 203 | } |
@@ -211,7 +211,7 @@ discard block |
||
211 | 211 | */ |
212 | 212 | public function gravatar($size = 30) |
213 | 213 | { |
214 | - return $this->display(function ($value) use ($size) { |
|
214 | + return $this->display(function($value) use ($size) { |
|
215 | 215 | $src = sprintf( |
216 | 216 | 'https://www.gravatar.com/avatar/%s?s=%d', |
217 | 217 | md5(strtolower($value)), |
@@ -232,7 +232,7 @@ discard block |
||
232 | 232 | */ |
233 | 233 | public function loading($values = [], $others = []) |
234 | 234 | { |
235 | - return $this->display(function ($value) use ($values, $others) { |
|
235 | + return $this->display(function($value) use ($values, $others) { |
|
236 | 236 | $values = (array) $values; |
237 | 237 | |
238 | 238 | if (in_array($value, $values)) { |
@@ -253,7 +253,7 @@ discard block |
||
253 | 253 | */ |
254 | 254 | public function icon(array $setting, $default = '') |
255 | 255 | { |
256 | - return $this->display(function ($value) use ($setting, $default) { |
|
256 | + return $this->display(function($value) use ($setting, $default) { |
|
257 | 257 | $fa = ''; |
258 | 258 | |
259 | 259 | if (isset($setting[$value])) { |
@@ -279,7 +279,7 @@ discard block |
||
279 | 279 | Carbon::setLocale($locale); |
280 | 280 | } |
281 | 281 | |
282 | - return $this->display(function ($value) { |
|
282 | + return $this->display(function($value) { |
|
283 | 283 | return Carbon::parse($value)->diffForHumans(); |
284 | 284 | }); |
285 | 285 | } |
@@ -294,7 +294,7 @@ discard block |
||
294 | 294 | */ |
295 | 295 | public function bool(array $map = [], $default = false) |
296 | 296 | { |
297 | - return $this->display(function ($value) use ($map, $default) { |
|
297 | + return $this->display(function($value) use ($map, $default) { |
|
298 | 298 | $bool = empty($map) ? boolval($value) : Arr::get($map, $value, $default); |
299 | 299 | |
300 | 300 | return $bool ? '<i class="fa-regular fa-check text-green"></i>' : '<i class="fa-regular fa-close text-red"></i>'; |
@@ -311,7 +311,7 @@ discard block |
||
311 | 311 | */ |
312 | 312 | public function jalali($format = '%Y-%m-%d H:i') |
313 | 313 | { |
314 | - return $this->display(function ($v) use ($format) { |
|
314 | + return $this->display(function($v) use ($format) { |
|
315 | 315 | if (empty($v)) { |
316 | 316 | return ""; |
317 | 317 | } else { |
@@ -320,7 +320,7 @@ discard block |
||
320 | 320 | if (request(\Encore\Admin\Grid\Exporter::$queryName)) { |
321 | 321 | return $jdate; |
322 | 322 | } else { |
323 | - return "<span dir='ltr'>" . $jdate . "</span>"; |
|
323 | + return "<span dir='ltr'>".$jdate."</span>"; |
|
324 | 324 | } |
325 | 325 | } |
326 | 326 | }); |
@@ -335,7 +335,7 @@ discard block |
||
335 | 335 | */ |
336 | 336 | public function default($default = '-') |
337 | 337 | { |
338 | - return $this->display(function ($value) use ($default) { |
|
338 | + return $this->display(function($value) use ($default) { |
|
339 | 339 | return $value ?: $default; |
340 | 340 | }); |
341 | 341 | } |
@@ -350,7 +350,7 @@ discard block |
||
350 | 350 | */ |
351 | 351 | public function dot($options = [], $default = '') |
352 | 352 | { |
353 | - return $this->prefix(function ($_, $original) use ($options, $default) { |
|
353 | + return $this->prefix(function($_, $original) use ($options, $default) { |
|
354 | 354 | if (is_null($original)) { |
355 | 355 | $style = $default; |
356 | 356 | } else { |
@@ -47,7 +47,7 @@ discard block |
||
47 | 47 | */ |
48 | 48 | public static function respond(Response $response) |
49 | 49 | { |
50 | - $next = function () use ($response) { |
|
50 | + $next = function() use ($response) { |
|
51 | 51 | return $response; |
52 | 52 | }; |
53 | 53 | |
@@ -91,7 +91,7 @@ discard block |
||
91 | 91 | $dom->loadHTML($response->getContent(), LIBXML_NOERROR | LIBXML_SCHEMA_CREATE); |
92 | 92 | |
93 | 93 | $response->setContent( |
94 | - $this->makeTitle($dom) . |
|
94 | + $this->makeTitle($dom). |
|
95 | 95 | $this->fetchContents($dom, $container) |
96 | 96 | ); |
97 | 97 | |
@@ -150,7 +150,7 @@ discard block |
||
150 | 150 | */ |
151 | 151 | protected function decodeUtf8HtmlEntities($html) |
152 | 152 | { |
153 | - return preg_replace_callback('/(&#[0-9]+;)/', function ($html) { |
|
153 | + return preg_replace_callback('/(&#[0-9]+;)/', function($html) { |
|
154 | 154 | return mb_convert_encoding($html[1], 'UTF-8', 'HTML-ENTITIES'); |
155 | 155 | }, $html); |
156 | 156 | } |
@@ -86,35 +86,35 @@ discard block |
||
86 | 86 | |
87 | 87 | $this->registerPublishing(); |
88 | 88 | |
89 | - Auth::provider('eloquent-cache', function ($app, array $config) { |
|
89 | + Auth::provider('eloquent-cache', function($app, array $config) { |
|
90 | 90 | return new CacheUserProvider($app['hash'], $config['model']); |
91 | 91 | }); |
92 | 92 | |
93 | 93 | $this->compatibleBlade(); |
94 | 94 | |
95 | 95 | |
96 | - Blade::directive('box', function ($title) { |
|
96 | + Blade::directive('box', function($title) { |
|
97 | 97 | return "<?php \$box = new \Encore\Admin\Widgets\Box({$title}, '"; |
98 | 98 | }); |
99 | - Blade::directive('endbox', function ($expression) { |
|
99 | + Blade::directive('endbox', function($expression) { |
|
100 | 100 | return "'); echo \$box->render(); ?>"; |
101 | 101 | }); |
102 | 102 | |
103 | - Blade::directive('can', function ($permission) { |
|
103 | + Blade::directive('can', function($permission) { |
|
104 | 104 | return "<?php if (\Encore\Admin\Facades\Admin::user()->can({$permission})): ?>"; |
105 | 105 | }); |
106 | - Blade::directive('endcan', function () { |
|
106 | + Blade::directive('endcan', function() { |
|
107 | 107 | return "<?php endif; ?>"; |
108 | 108 | }); |
109 | 109 | |
110 | - Blade::directive('canAny', function ($permissions) { |
|
110 | + Blade::directive('canAny', function($permissions) { |
|
111 | 111 | return "<?php if (\Encore\Admin\Facades\Admin::user()->canAny({$permissions})): ?>"; |
112 | 112 | }); |
113 | - Blade::directive('endcanAny', function () { |
|
113 | + Blade::directive('endcanAny', function() { |
|
114 | 114 | return "<?php endif; ?>"; |
115 | 115 | }); |
116 | 116 | |
117 | - Collection::macro('paginate', function ($perPage, $total = null, $page = null, $pageName = 'page') { |
|
117 | + Collection::macro('paginate', function($perPage, $total = null, $page = null, $pageName = 'page') { |
|
118 | 118 | /** @var Collection $this */ |
119 | 119 | $page = $page ?: LengthAwarePaginator::resolveCurrentPage($pageName); |
120 | 120 | return new LengthAwarePaginator( |
@@ -182,8 +182,8 @@ discard block |
||
182 | 182 | */ |
183 | 183 | protected function macroRouter() |
184 | 184 | { |
185 | - Router::macro('content', function ($uri, $content, $options = []) { |
|
186 | - return $this->match(['GET', 'HEAD'], $uri, function (Content $layout) use ($content, $options) { |
|
185 | + Router::macro('content', function($uri, $content, $options = []) { |
|
186 | + return $this->match(['GET', 'HEAD'], $uri, function(Content $layout) use ($content, $options) { |
|
187 | 187 | return $layout |
188 | 188 | ->title(Arr::get($options, 'title', ' ')) |
189 | 189 | ->description(Arr::get($options, 'desc', ' ')) |
@@ -191,8 +191,8 @@ discard block |
||
191 | 191 | }); |
192 | 192 | }); |
193 | 193 | |
194 | - Router::macro('component', function ($uri, $component, $data = [], $options = []) { |
|
195 | - return $this->match(['GET', 'HEAD'], $uri, function (Content $layout) use ($component, $data, $options) { |
|
194 | + Router::macro('component', function($uri, $component, $data = [], $options = []) { |
|
195 | + return $this->match(['GET', 'HEAD'], $uri, function(Content $layout) use ($component, $data, $options) { |
|
196 | 196 | return $layout |
197 | 197 | ->title(Arr::get($options, 'title', ' ')) |
198 | 198 | ->description(Arr::get($options, 'desc', ' ')) |
@@ -1,7 +1,7 @@ discard block |
||
1 | 1 | <?php |
2 | 2 | |
3 | 3 | return [ |
4 | - 'persian_alpha' => 'The :attribute must be a persian alphabet.', |
|
4 | + 'persian_alpha' => 'The :attribute must be a persian alphabet.', |
|
5 | 5 | 'persian_num' => 'The :attribute must be a persian number.', |
6 | 6 | 'persian_alpha_num' => 'The :attribute must be a persian alphabet or number.', |
7 | 7 | 'persian_alpha_eng_num' => 'The :attribute must be a persian alphabet or number or english number.', |
@@ -16,6 +16,6 @@ discard block |
||
16 | 16 | 'ir_bank_card_number' => 'The :attribute must be a valid iranian payment card number.', |
17 | 17 | 'ir_sheba' => 'The :attribute must be a iranian sheba number.', |
18 | 18 | 'ir_national_code' => 'The :attribute must be a iranian national code.', |
19 | - 'a_url' => 'The :attribute is an invalid url.', |
|
20 | - 'a_domain' => 'The :attribute is an invalid domain.', |
|
19 | + 'a_url' => 'The :attribute is an invalid url.', |
|
20 | + 'a_domain' => 'The :attribute is an invalid domain.', |
|
21 | 21 | ]; |
@@ -4,10 +4,10 @@ |
||
4 | 4 | $incorrectMsg = ':attribute صحیح نمی باشد.'; |
5 | 5 | |
6 | 6 | return [ |
7 | - 'persian_alpha' => ':attribute فقط میتواند شامل حروف فارسی باشد.', |
|
8 | - 'persian_num' => ':attribute فقط میتواند شامل اعداد فارسی باشد.', |
|
9 | - 'persian_alpha_num' => ':attribute فقط میتواند شامل حروف و اعداد فارسی باشد.', |
|
10 | - 'persian_alpha_eng_num' => ':attribute فقط میتواند شامل حروف و اعداد فارسی و اعداد انگلیسی باشد.', |
|
7 | + 'persian_alpha' => ':attribute فقط میتواند شامل حروف فارسی باشد.', |
|
8 | + 'persian_num' => ':attribute فقط میتواند شامل اعداد فارسی باشد.', |
|
9 | + 'persian_alpha_num' => ':attribute فقط میتواند شامل حروف و اعداد فارسی باشد.', |
|
10 | + 'persian_alpha_eng_num' => ':attribute فقط میتواند شامل حروف و اعداد فارسی و اعداد انگلیسی باشد.', |
|
11 | 11 | 'persian_not_accept' => ':attribute فقط میتواند شامل حروف یا اعداد لاتین باشد.', |
12 | 12 | 'shamsi_date' => $incorrectMsg, |
13 | 13 | 'shamsi_date_between' => ':attribute باید بین سال های :afterDate تا :beforeDate باشد.', |
@@ -21,7 +21,7 @@ discard block |
||
21 | 21 | */ |
22 | 22 | public function up() |
23 | 23 | { |
24 | - Schema::create(config('admin.database.users_table'), function (Blueprint $table) { |
|
24 | + Schema::create(config('admin.database.users_table'), function(Blueprint $table) { |
|
25 | 25 | $table->increments('id'); |
26 | 26 | $table->string('username', 190)->nullable()->unique(); |
27 | 27 | $table->string('password', 60); |
@@ -34,14 +34,14 @@ discard block |
||
34 | 34 | $table->timestamps(); |
35 | 35 | }); |
36 | 36 | |
37 | - Schema::create(config('admin.database.roles_table'), function (Blueprint $table) { |
|
37 | + Schema::create(config('admin.database.roles_table'), function(Blueprint $table) { |
|
38 | 38 | $table->increments('id'); |
39 | 39 | $table->string('name', 50)->unique(); |
40 | 40 | $table->string('slug', 50)->unique(); |
41 | 41 | $table->timestamps(); |
42 | 42 | }); |
43 | 43 | |
44 | - Schema::create(config('admin.database.permissions_table'), function (Blueprint $table) { |
|
44 | + Schema::create(config('admin.database.permissions_table'), function(Blueprint $table) { |
|
45 | 45 | $table->increments('id'); |
46 | 46 | $table->string('name', 50)->unique(); |
47 | 47 | $table->string('slug', 50)->unique(); |
@@ -50,7 +50,7 @@ discard block |
||
50 | 50 | $table->timestamps(); |
51 | 51 | }); |
52 | 52 | |
53 | - Schema::create(config('admin.database.menu_table'), function (Blueprint $table) { |
|
53 | + Schema::create(config('admin.database.menu_table'), function(Blueprint $table) { |
|
54 | 54 | $table->increments('id'); |
55 | 55 | $table->integer('parent_id')->default(0); |
56 | 56 | $table->integer('order')->default(0); |
@@ -62,35 +62,35 @@ discard block |
||
62 | 62 | $table->timestamps(); |
63 | 63 | }); |
64 | 64 | |
65 | - Schema::create(config('admin.database.role_users_table'), function (Blueprint $table) { |
|
65 | + Schema::create(config('admin.database.role_users_table'), function(Blueprint $table) { |
|
66 | 66 | $table->integer('role_id'); |
67 | 67 | $table->integer('user_id'); |
68 | 68 | $table->index(['role_id', 'user_id']); |
69 | 69 | $table->timestamps(); |
70 | 70 | }); |
71 | 71 | |
72 | - Schema::create(config('admin.database.role_permissions_table'), function (Blueprint $table) { |
|
72 | + Schema::create(config('admin.database.role_permissions_table'), function(Blueprint $table) { |
|
73 | 73 | $table->integer('role_id'); |
74 | 74 | $table->integer('permission_id'); |
75 | 75 | $table->index(['role_id', 'permission_id']); |
76 | 76 | $table->timestamps(); |
77 | 77 | }); |
78 | 78 | |
79 | - Schema::create(config('admin.database.user_permissions_table'), function (Blueprint $table) { |
|
79 | + Schema::create(config('admin.database.user_permissions_table'), function(Blueprint $table) { |
|
80 | 80 | $table->integer('user_id'); |
81 | 81 | $table->integer('permission_id'); |
82 | 82 | $table->index(['user_id', 'permission_id']); |
83 | 83 | $table->timestamps(); |
84 | 84 | }); |
85 | 85 | |
86 | - Schema::create(config('admin.database.role_menu_table'), function (Blueprint $table) { |
|
86 | + Schema::create(config('admin.database.role_menu_table'), function(Blueprint $table) { |
|
87 | 87 | $table->integer('role_id'); |
88 | 88 | $table->integer('menu_id'); |
89 | 89 | $table->index(['role_id', 'menu_id']); |
90 | 90 | $table->timestamps(); |
91 | 91 | }); |
92 | 92 | |
93 | - Schema::create(config('admin.database.operation_log_table'), function (Blueprint $table) { |
|
93 | + Schema::create(config('admin.database.operation_log_table'), function(Blueprint $table) { |
|
94 | 94 | $table->increments('id'); |
95 | 95 | $table->integer('user_id'); |
96 | 96 | $table->string('path'); |
@@ -98,7 +98,7 @@ discard block |
||
98 | 98 | \Kavenegar::VerifyLookup($mobile, $token, null, null, config('kavenegar.template.auth'), null); |
99 | 99 | } |
100 | 100 | } catch (Exception $e) { |
101 | - \Log::error('Login error. ' . $e->getMessage()); |
|
101 | + \Log::error('Login error. '.$e->getMessage()); |
|
102 | 102 | return back()->withInput()->withErrors(['mobile' => 'خطا در ارسال پیامک!']); |
103 | 103 | } |
104 | 104 | |
@@ -145,7 +145,7 @@ discard block |
||
145 | 145 | { |
146 | 146 | $form = $this->settingForm(); |
147 | 147 | $form->tools( |
148 | - function (Form\Tools $tools) { |
|
148 | + function(Form\Tools $tools) { |
|
149 | 149 | $tools->disableList(); |
150 | 150 | $tools->disableDelete(); |
151 | 151 | $tools->disableView(); |
@@ -183,7 +183,7 @@ discard block |
||
183 | 183 | $form->image('avatar', trans('admin.avatar')); |
184 | 184 | $form->password('password', trans('admin.password'))->rules('confirmed|required'); |
185 | 185 | $form->password('password_confirmation', trans('admin.password_confirmation'))->rules('required') |
186 | - ->default(function ($form) { |
|
186 | + ->default(function($form) { |
|
187 | 187 | return $form->model()->password; |
188 | 188 | }); |
189 | 189 | |
@@ -191,13 +191,13 @@ discard block |
||
191 | 191 | |
192 | 192 | $form->ignore(['password_confirmation']); |
193 | 193 | |
194 | - $form->saving(function (Form $form) { |
|
194 | + $form->saving(function(Form $form) { |
|
195 | 195 | if ($form->password && $form->model()->password != $form->password) { |
196 | 196 | $form->password = Hash::make($form->password); |
197 | 197 | } |
198 | 198 | }); |
199 | 199 | |
200 | - $form->saved(function () { |
|
200 | + $form->saved(function() { |
|
201 | 201 | admin_toastr(trans('admin.update_succeeded')); |
202 | 202 | |
203 | 203 | return redirect(admin_url('auth/setting')); |
@@ -42,14 +42,14 @@ discard block |
||
42 | 42 | $grid->column('created_at', trans('admin.created_at')); |
43 | 43 | $grid->column('updated_at', trans('admin.updated_at')); |
44 | 44 | |
45 | - $grid->actions(function (Grid\Displayers\Actions $actions) { |
|
45 | + $grid->actions(function(Grid\Displayers\Actions $actions) { |
|
46 | 46 | if ($actions->getKey() == 1) { |
47 | 47 | $actions->disableDelete(); |
48 | 48 | } |
49 | 49 | }); |
50 | 50 | |
51 | - $grid->tools(function (Grid\Tools $tools) { |
|
52 | - $tools->batch(function (Grid\Tools\BatchActions $actions) { |
|
51 | + $grid->tools(function(Grid\Tools $tools) { |
|
52 | + $tools->batch(function(Grid\Tools\BatchActions $actions) { |
|
53 | 53 | $actions->disableDelete(); |
54 | 54 | }); |
55 | 55 | }); |
@@ -61,17 +61,17 @@ discard block |
||
61 | 61 | |
62 | 62 | protected function setFilters(Filter $filter) |
63 | 63 | { |
64 | - $filter->column(1 / 2, function (Filter $group) { |
|
64 | + $filter->column(1 / 2, function(Filter $group) { |
|
65 | 65 | $group->like('username', trans('admin.username')); |
66 | - $group->where(function ($query) { |
|
66 | + $group->where(function($query) { |
|
67 | 67 | |
68 | - $query->whereHas('roles', function ($query) { |
|
68 | + $query->whereHas('roles', function($query) { |
|
69 | 69 | $query->where('role_id', '=', $this->input); |
70 | 70 | }); |
71 | 71 | }, trans('admin.role'))->select(Role::pluck('name', 'id')); |
72 | 72 | }); |
73 | 73 | |
74 | - $filter->column(1 / 2, function (Filter $group) { |
|
74 | + $filter->column(1 / 2, function(Filter $group) { |
|
75 | 75 | $group->like('name', trans('admin.name')); |
76 | 76 | $group->like('mobile', trans('admin.mobile')); |
77 | 77 | }); |
@@ -94,10 +94,10 @@ discard block |
||
94 | 94 | $show->field('username', trans('admin.username')); |
95 | 95 | $show->field('name', trans('admin.name')); |
96 | 96 | $show->field('mobile', trans('admin.mobile')); |
97 | - $show->field('roles', trans('admin.roles'))->as(function ($roles) { |
|
97 | + $show->field('roles', trans('admin.roles'))->as(function($roles) { |
|
98 | 98 | return $roles->pluck('name'); |
99 | 99 | })->label(); |
100 | - $show->field('permissions', trans('admin.permissions'))->as(function ($permission) { |
|
100 | + $show->field('permissions', trans('admin.permissions'))->as(function($permission) { |
|
101 | 101 | return $permission->pluck('name'); |
102 | 102 | })->label(); |
103 | 103 | $show->field('created_at', trans('admin.created_at')); |
@@ -134,7 +134,7 @@ discard block |
||
134 | 134 | $form->number('mobile', trans('admin.mobile')); |
135 | 135 | $form->password('password', trans('admin.password'))->rules('required|confirmed'); |
136 | 136 | $form->password('password_confirmation', trans('admin.password_confirmation'))->rules('required') |
137 | - ->default(function ($form) { |
|
137 | + ->default(function($form) { |
|
138 | 138 | return $form->model()->password; |
139 | 139 | }); |
140 | 140 | |
@@ -146,7 +146,7 @@ discard block |
||
146 | 146 | $form->display('created_at', trans('admin.created_at')); |
147 | 147 | $form->display('updated_at', trans('admin.updated_at')); |
148 | 148 | |
149 | - $form->saving(function (Form $form) { |
|
149 | + $form->saving(function(Form $form) { |
|
150 | 150 | if ($form->password && $form->model()->password != $form->password) { |
151 | 151 | $form->password = Hash::make($form->password); |
152 | 152 | } |
@@ -43,7 +43,7 @@ discard block |
||
43 | 43 | { |
44 | 44 | parent::boot(); |
45 | 45 | |
46 | - static::saved(function ($model) { |
|
46 | + static::saved(function($model) { |
|
47 | 47 | $model->clearCaches(); |
48 | 48 | }); |
49 | 49 | } |
@@ -111,7 +111,7 @@ discard block |
||
111 | 111 | |
112 | 112 | protected function getRolesCacheKey(): string |
113 | 113 | { |
114 | - return $this->getGeneralCacheKey() . '.roles'; |
|
114 | + return $this->getGeneralCacheKey().'.roles'; |
|
115 | 115 | } |
116 | 116 | |
117 | 117 | public function clearRolesCache(): bool |
@@ -125,7 +125,7 @@ discard block |
||
125 | 125 | return $this->getRelationValue('roles'); |
126 | 126 | } |
127 | 127 | |
128 | - $roles = Cache::remember($this->getRolesCacheKey(), now()->addHour(), function () { |
|
128 | + $roles = Cache::remember($this->getRolesCacheKey(), now()->addHour(), function() { |
|
129 | 129 | $this->loadMissing('roles.permissions'); |
130 | 130 | return $this->getRelationValue('roles'); |
131 | 131 | }); |
@@ -141,7 +141,7 @@ discard block |
||
141 | 141 | |
142 | 142 | protected function getPermissionsCacheKey(): string |
143 | 143 | { |
144 | - return $this->getGeneralCacheKey() . '.permissions'; |
|
144 | + return $this->getGeneralCacheKey().'.permissions'; |
|
145 | 145 | } |
146 | 146 | |
147 | 147 | public function clearPermissionsCache(): bool |
@@ -155,7 +155,7 @@ discard block |
||
155 | 155 | return $this->getRelationValue('permissions'); |
156 | 156 | } |
157 | 157 | |
158 | - $permissions = Cache::remember($this->getPermissionsCacheKey(), now()->addHour(), function () { |
|
158 | + $permissions = Cache::remember($this->getPermissionsCacheKey(), now()->addHour(), function() { |
|
159 | 159 | return $this->getRelationValue('permissions'); |
160 | 160 | }); |
161 | 161 | |
@@ -169,6 +169,6 @@ discard block |
||
169 | 169 | $this->clearRolesCache(); |
170 | 170 | $this->clearPermissionsCache(); |
171 | 171 | $this->clearHasPermissionsCaches(); |
172 | - Cache::forget($this->getGeneralCacheKey() . '.user'); |
|
172 | + Cache::forget($this->getGeneralCacheKey().'.user'); |
|
173 | 173 | } |
174 | 174 | } |