Passed
Push — feature/job-status-transition-... ( db421e )
by Tristan
05:26
created
app/Http/Controllers/Admin/JobPosterStatusTransitionCrudController.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -41,7 +41,7 @@  discard block
 block discarded – undo
41 41
                 'limit' => 120,
42 42
             ]);
43 43
 
44
-            $this->crud->addField([  // Select
44
+            $this->crud->addField([// Select
45 45
                 'label' => 'Owner User Role',
46 46
                 'type' => 'select',
47 47
                 'name' => 'owner_user_role_id', // the db column for the foreign key
@@ -50,7 +50,7 @@  discard block
 block discarded – undo
50 50
                 'model' => \App\Models\UserRole::class, // foreign key model
51 51
             ]);
52 52
 
53
-            $this->crud->addField([  // Select
53
+            $this->crud->addField([// Select
54 54
                 'label' => 'From Status',
55 55
                 'type' => 'select',
56 56
                 'name' => 'from_job_poster_status_id', // the db column for the foreign key
@@ -59,7 +59,7 @@  discard block
 block discarded – undo
59 59
                 'model' => \App\Models\Lookup\JobPosterStatus::class, // foreign key model
60 60
             ]);
61 61
 
62
-            $this->crud->addField([  // Select
62
+            $this->crud->addField([// Select
63 63
                 'label' => 'To Status',
64 64
                 'type' => 'select',
65 65
                 'name' => 'to_job_poster_status_id', // the db column for the foreign key
Please login to merge, or discard this patch.