diff --git a/app/Console/Commands/RemoveExplicitEols.php b/app/Console/Commands/RemoveExplicitEols.php new file mode 100644 index 0000000000..a0793cc507 --- /dev/null +++ b/app/Console/Commands/RemoveExplicitEols.php @@ -0,0 +1,41 @@ +option('model_name'))->first(); + + if($assetModel){ + $assets = Asset::where('model_id', '=', $assetModel->id)->get(); + } + else { + $this->error('Asset model not found'); + } + + dd($assets); + } +}