Completed
Push — master ( 4a02ec...bb2b38 )
by Cristian
02:13
created
src/config/config.php 1 patch
Indentation   +17 added lines, -17 removed lines patch added patch discarded remove patch
@@ -2,7 +2,7 @@  discard block
 block discarded – undo
2 2
 
3 3
 return [
4 4
 
5
-	/*
5
+    /*
6 6
 	|--------------------------------------------------------------------------
7 7
 	| Look & feel customizations
8 8
 	|--------------------------------------------------------------------------
@@ -11,29 +11,29 @@  discard block
 block discarded – undo
11 11
 	|
12 12
 	*/
13 13
 
14
-	// Project name. Shown in the breadcrumbs and a few other places.
15
-	'project_name' => 'Backpack',
14
+    // Project name. Shown in the breadcrumbs and a few other places.
15
+    'project_name' => 'Backpack',
16 16
 
17
-	// Menu logos
18
-	'logo_lg' => '<b>Back</b>pack',
19
-	'logo_mini' => '<b>B</b>p',
17
+    // Menu logos
18
+    'logo_lg' => '<b>Back</b>pack',
19
+    'logo_mini' => '<b>B</b>p',
20 20
 
21 21
 
22
-	// Developer or company name. Shown in footer.
23
-	'developer_name' => 'Cristian Tabacitu',
22
+    // Developer or company name. Shown in footer.
23
+    'developer_name' => 'Cristian Tabacitu',
24 24
 
25
-	// Developer website. Link in footer.
26
-	'developer_link' => 'http://tabacitu.ro',
25
+    // Developer website. Link in footer.
26
+    'developer_link' => 'http://tabacitu.ro',
27 27
 
28
-	// Show powered by Laravel Backpack in the footer?
29
-	'show_powered_by' => true,
28
+    // Show powered by Laravel Backpack in the footer?
29
+    'show_powered_by' => true,
30 30
 
31
-	// The AdminLTE skin. Affects menu color and primary/secondary colors used throughout the application.
32
-	'skin' => 'skin-purple',
33
-	// Options: skin-black, skin-blue, skin-purple, skin-red, skin-yellow, skin-green, skin-blue-light, skin-black-light, skin-purple-light, skin-green-light, skin-red-light, skin-yellow-light
31
+    // The AdminLTE skin. Affects menu color and primary/secondary colors used throughout the application.
32
+    'skin' => 'skin-purple',
33
+    // Options: skin-black, skin-blue, skin-purple, skin-red, skin-yellow, skin-green, skin-blue-light, skin-black-light, skin-purple-light, skin-green-light, skin-red-light, skin-yellow-light
34 34
 
35 35
 
36
-	/*
36
+    /*
37 37
 	|--------------------------------------------------------------------------
38 38
 	| Registration Open
39 39
 	|--------------------------------------------------------------------------
@@ -44,6 +44,6 @@  discard block
 block discarded – undo
44 44
 	|
45 45
 	*/
46 46
 
47
-	'registration_open' => true,
47
+    'registration_open' => true,
48 48
 
49 49
 ];
Please login to merge, or discard this patch.
src/app/Http/routes.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,7 +2,7 @@
 block discarded – undo
2 2
 
3 3
 // All BackPack routes are placed under the 'admin' prefix, to minimize possible conflicts with your application. This means your login/logout/register urls are also under the 'admin' prefix, so you can have separate logins for users and admins.
4 4
 Route::group(['middleware' => 'web', 'prefix' => 'admin'], function () {
5
-	// Admin authentication routes
5
+    // Admin authentication routes
6 6
     Route::auth();
7 7
 
8 8
     // Other Backpack\Base routes
Please login to merge, or discard this patch.
src/resources/error_views/500.blade.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@
 block discarded – undo
19 19
 
20 20
           <p>
21 21
             <?php
22
-              $default_error_message = "An internal server error has occurred. If the error persists please contact the development team.";
22
+                $default_error_message = "An internal server error has occurred. If the error persists please contact the development team.";
23 23
             ?>
24 24
             {!! isset($exception)? ($exception->getMessage()?$exception->getMessage():$default_error_message): $default_error_message !!}
25 25
           </p>
Please login to merge, or discard this patch.
src/resources/error_views/405.blade.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@
 block discarded – undo
19 19
 
20 20
           <p>
21 21
             <?php
22
-              $default_error_message = "Meanwhile, you may <a href='".url('admin')."'>return to dashboard</a>";
22
+                $default_error_message = "Meanwhile, you may <a href='".url('admin')."'>return to dashboard</a>";
23 23
             ?>
24 24
             {!! isset($exception)? ($exception->getMessage()?$exception->getMessage():$default_error_message): $default_error_message !!}
25 25
           </p>
Please login to merge, or discard this patch.
src/resources/error_views/404.blade.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@
 block discarded – undo
19 19
 
20 20
           <p>
21 21
             <?php
22
-              $default_error_message = "Meanwhile, you may <a href='".url('admin')."'>return to dashboard</a>.";
22
+                $default_error_message = "Meanwhile, you may <a href='".url('admin')."'>return to dashboard</a>.";
23 23
             ?>
24 24
             {!! isset($exception)? ($exception->getMessage()?$exception->getMessage():$default_error_message): $default_error_message !!}
25 25
           </p>
Please login to merge, or discard this patch.
src/resources/error_views/503.blade.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@
 block discarded – undo
19 19
 
20 20
           <p>
21 21
             <?php
22
-              $default_error_message = "The server is overloaded or down for maintenance. Please try again later.";
22
+                $default_error_message = "The server is overloaded or down for maintenance. Please try again later.";
23 23
             ?>
24 24
             {!! isset($exception)? ($exception->getMessage()?$exception->getMessage():$default_error_message): $default_error_message !!}
25 25
           </p>
Please login to merge, or discard this patch.
src/resources/error_views/403.blade.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@
 block discarded – undo
19 19
 
20 20
           <p>
21 21
             <?php
22
-              $default_error_message = "Meanwhile, you may <a href='".url('admin')."'>return to dashboard</a>";
22
+                $default_error_message = "Meanwhile, you may <a href='".url('admin')."'>return to dashboard</a>";
23 23
             ?>
24 24
             {!! isset($exception)? ($exception->getMessage()?$exception->getMessage():$default_error_message): $default_error_message !!}
25 25
           </p>
Please login to merge, or discard this patch.
src/resources/error_views/429.blade.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@
 block discarded – undo
19 19
 
20 20
           <p>
21 21
             <?php
22
-              $default_error_message = "Meanwhile, you may <a href='".url('admin')."'>return to dashboard</a>";
22
+                $default_error_message = "Meanwhile, you may <a href='".url('admin')."'>return to dashboard</a>";
23 23
             ?>
24 24
             {!! isset($exception)? ($exception->getMessage()?$exception->getMessage():$default_error_message): $default_error_message !!}
25 25
           </p>
Please login to merge, or discard this patch.
src/resources/error_views/400.blade.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@
 block discarded – undo
19 19
 
20 20
           <p>
21 21
             <?php
22
-              $default_error_message = "Meanwhile, you may <a href='".url('admin')."'>return to dashboard</a>";
22
+                $default_error_message = "Meanwhile, you may <a href='".url('admin')."'>return to dashboard</a>";
23 23
             ?>
24 24
             {!! isset($exception)? ($exception->getMessage()?$exception->getMessage():$default_error_message): $default_error_message !!}
25 25
           </p>
Please login to merge, or discard this patch.