@@ -34,7 +34,7 @@ discard block |
||
| 34 | 34 | $fullStoragePath = storage_path('app/'.$fullFilePath); |
| 35 | 35 | $lifetime = 31556926; // One year in seconds |
| 36 | 36 | |
| 37 | - if (! Storage::exists($fullFilePath)) { |
|
| 37 | + if (!Storage::exists($fullFilePath)) { |
|
| 38 | 38 | abort(404); |
| 39 | 39 | } |
| 40 | 40 | |
@@ -55,10 +55,10 @@ discard block |
||
| 55 | 55 | $h = Request::get('h') ?: $w; |
| 56 | 56 | } |
| 57 | 57 | |
| 58 | - $imgRaw = Image::cache(function ($image) use ($fullStoragePath, $w, $h) { |
|
| 58 | + $imgRaw = Image::cache(function($image) use ($fullStoragePath, $w, $h) { |
|
| 59 | 59 | $im = $image->make($fullStoragePath); |
| 60 | 60 | if ($w) { |
| 61 | - if (! $h) { |
|
| 61 | + if (!$h) { |
|
| 62 | 62 | $im->fit($w); |
| 63 | 63 | } else { |
| 64 | 64 | $im->fit($w, $h); |
@@ -31,7 +31,7 @@ |
||
| 31 | 31 | $data['photo'] = cb()->uploadFile('photo', true, 200, 200); |
| 32 | 32 | } |
| 33 | 33 | DB::table("users")->where("id", auth()->id())->update($data); |
| 34 | - }catch (\Exception $e) { |
|
| 34 | + } catch (\Exception $e) { |
|
| 35 | 35 | Log::error($e); |
| 36 | 36 | return cb()->redirectBack("Something went wrong!","warning"); |
| 37 | 37 | } |
@@ -11,11 +11,11 @@ discard block |
||
| 11 | 11 | public function getIndex() { |
| 12 | 12 | $data = []; |
| 13 | 13 | $data['page_title'] = 'Profile'; |
| 14 | - return view('crudbooster::profile',$data); |
|
| 14 | + return view('crudbooster::profile', $data); |
|
| 15 | 15 | } |
| 16 | 16 | |
| 17 | 17 | public function postUpdate() { |
| 18 | - validator(request()->all(),[ |
|
| 18 | + validator(request()->all(), [ |
|
| 19 | 19 | 'name'=>'required|max:255|min:3', |
| 20 | 20 | 'email'=>'required|email', |
| 21 | 21 | 'photo'=>'image', |
@@ -26,19 +26,19 @@ discard block |
||
| 26 | 26 | $data = []; |
| 27 | 27 | $data['name'] = request('name'); |
| 28 | 28 | $data['email'] = request('email'); |
| 29 | - if(request('password')) { |
|
| 29 | + if (request('password')) { |
|
| 30 | 30 | $data['password'] = Hash::make(request('password')); |
| 31 | 31 | } |
| 32 | - if(request()->hasFile('photo')) { |
|
| 32 | + if (request()->hasFile('photo')) { |
|
| 33 | 33 | $data['photo'] = cb()->uploadFile('photo', true, 200, 200); |
| 34 | 34 | } |
| 35 | 35 | DB::table("users")->where("id", auth()->id())->update($data); |
| 36 | - }catch (\Exception $e) { |
|
| 36 | + } catch (\Exception $e) { |
|
| 37 | 37 | Log::error($e); |
| 38 | - return cb()->redirectBack("Something went wrong!","warning"); |
|
| 38 | + return cb()->redirectBack("Something went wrong!", "warning"); |
|
| 39 | 39 | } |
| 40 | 40 | |
| 41 | - return cb()->redirectBack("The profile data has been updated!","success"); |
|
| 41 | + return cb()->redirectBack("The profile data has been updated!", "success"); |
|
| 42 | 42 | } |
| 43 | 43 | |
| 44 | 44 | } |
@@ -41,7 +41,7 @@ |
||
| 41 | 41 | } |
| 42 | 42 | |
| 43 | 43 | public function send() { |
| 44 | - Mail::send("crudbooster::emails.blank", ['content' => $this->content], function ($message) { |
|
| 44 | + Mail::send("crudbooster::emails.blank", ['content' => $this->content], function($message) { |
|
| 45 | 45 | $message->priority(1); |
| 46 | 46 | $message->to($this->to_email); |
| 47 | 47 | $message->from($this->sender_email, $this->sender_name); |
@@ -11,7 +11,7 @@ |
||
| 11 | 11 | class CheckboxHelper |
| 12 | 12 | { |
| 13 | 13 | public static function parseValuesToArray($values) { |
| 14 | - $data = explode(";",$values); |
|
| 14 | + $data = explode(";", $values); |
|
| 15 | 15 | return $data; |
| 16 | 16 | } |
| 17 | 17 | |
@@ -1,12 +1,12 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | |
| 3 | -\Validator::extend('alpha_spaces', function ($attribute, $value) { |
|
| 3 | +\Validator::extend('alpha_spaces', function($attribute, $value) { |
|
| 4 | 4 | // This will only accept alpha and spaces. |
| 5 | 5 | // If you want to accept hyphens use: /^[\pL\s-]+$/u. |
| 6 | 6 | return preg_match('/^[\pL\s]+$/u', $value); |
| 7 | 7 | },'The :attribute should be letters and spaces only'); |
| 8 | 8 | |
| 9 | -\Validator::extend('alpha_num_spaces', function ($attribute, $value) { |
|
| 9 | +\Validator::extend('alpha_num_spaces', function($attribute, $value) { |
|
| 10 | 10 | // This will only accept alphanumeric and spaces. |
| 11 | 11 | return preg_match('/^[a-zA-Z0-9\s]+$/', $value); |
| 12 | 12 | },'The :attribute should be alphanumeric characters and spaces only'); |
| 13 | 13 | \ No newline at end of file |
@@ -18,8 +18,8 @@ |
||
| 18 | 18 | public function handle($request, Closure $next) |
| 19 | 19 | { |
| 20 | 20 | |
| 21 | - if(!session()->has("developer")) { |
|
| 22 | - return cb()->redirect(cb()->getDeveloperUrl("login"),"Please login for first"); |
|
| 21 | + if (!session()->has("developer")) { |
|
| 22 | + return cb()->redirect(cb()->getDeveloperUrl("login"), "Please login for first"); |
|
| 23 | 23 | } |
| 24 | 24 | |
| 25 | 25 | return $next($request); |
@@ -12,7 +12,7 @@ discard block |
||
| 12 | 12 | */ |
| 13 | 13 | public function up() |
| 14 | 14 | { |
| 15 | - Schema::table('users', function (Blueprint $table) { |
|
| 15 | + Schema::table('users', function(Blueprint $table) { |
|
| 16 | 16 | $table->string('photo')->nullable(); |
| 17 | 17 | $table->integer('cb_roles_id'); |
| 18 | 18 | }); |
@@ -25,7 +25,7 @@ discard block |
||
| 25 | 25 | */ |
| 26 | 26 | public function down() |
| 27 | 27 | { |
| 28 | - Schema::table('users', function (Blueprint $table) { |
|
| 28 | + Schema::table('users', function(Blueprint $table) { |
|
| 29 | 29 | $table->dropColumn('cb_roles_id'); |
| 30 | 30 | $table->dropColumn('photo'); |
| 31 | 31 | }); |
@@ -12,7 +12,7 @@ |
||
| 12 | 12 | */ |
| 13 | 13 | public function up() |
| 14 | 14 | { |
| 15 | - Schema::create('cb_role_privileges', function (Blueprint $table) { |
|
| 15 | + Schema::create('cb_role_privileges', function(Blueprint $table) { |
|
| 16 | 16 | $table->increments("id"); |
| 17 | 17 | $table->integer("cb_roles_id"); |
| 18 | 18 | $table->integer("cb_menus_id"); |
@@ -12,7 +12,7 @@ |
||
| 12 | 12 | */ |
| 13 | 13 | public function up() |
| 14 | 14 | { |
| 15 | - Schema::create('cb_roles', function (Blueprint $table) { |
|
| 15 | + Schema::create('cb_roles', function(Blueprint $table) { |
|
| 16 | 16 | $table->increments("id"); |
| 17 | 17 | $table->string('name'); |
| 18 | 18 | }); |