We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e72577c + 33dd59f commit 83c6371Copy full SHA for 83c6371
app/controllers/admin/AssetsController.php
@@ -90,6 +90,7 @@ public function getCreate($model_id = null)
90
$model_list = array('' => 'Select a Model') + DB::table('models')
91
->select(DB::raw('concat(name," / ",modelno) as name, id'))->orderBy('name', 'asc')
92
->orderBy('modelno', 'asc')
93
+ ->whereNull('deleted_at')
94
->lists('name', 'id');
95
96
0 commit comments