diff --git a/app/controllers/admin/AssetsController.php b/app/controllers/admin/AssetsController.php index b7e56d9915..1610c32c14 100644 --- a/app/controllers/admin/AssetsController.php +++ b/app/controllers/admin/AssetsController.php @@ -185,7 +185,7 @@ class AssetsController extends AdminController { */ public function getDelete($assetId) { - // Check if the blog post exists + // Check if the asset exists if (is_null($asset = Asset::find($assetId))) { // Redirect to the asset management page with error diff --git a/app/controllers/admin/ManufacturersController.php b/app/controllers/admin/ManufacturersController.php index d79035ed8c..96aa08f579 100644 --- a/app/controllers/admin/ManufacturersController.php +++ b/app/controllers/admin/ManufacturersController.php @@ -19,7 +19,7 @@ class ManufacturersController extends AdminController { */ public function getIndex() { - // Grab all the blog posts + // Grab all the manufacturers $manufacturers = Manufacturer::orderBy('created_at', 'DESC')->paginate(10); // Show the page @@ -106,7 +106,7 @@ class ManufacturersController extends AdminController { */ public function postEdit($manufacturerId = null) { - // Check if the blog post exists + // Check if the manufacturer exists if (is_null($manufacturer = Manufacturer::find($manufacturerId))) { // Redirect to the manufacturer page diff --git a/app/controllers/admin/ModelsController.php b/app/controllers/admin/ModelsController.php index 2bffa18ca8..c06d4b7d22 100644 --- a/app/controllers/admin/ModelsController.php +++ b/app/controllers/admin/ModelsController.php @@ -14,13 +14,13 @@ use View; class ModelsController extends AdminController { /** - * Show a list of all the blog posts. + * Show a list of all the models. * * @return View */ public function getIndex() { - // Grab all the blog posts + // Grab all the models $models = Model::orderBy('created_at', 'DESC')->paginate(10); // Show the page @@ -115,7 +115,7 @@ class ModelsController extends AdminController { */ public function postEdit($modelId = null) { - // Check if the blog post exists + // Check if the model exists if (is_null($model = Model::find($modelId))) { // Redirect to the blogs management page @@ -161,17 +161,17 @@ class ModelsController extends AdminController { */ public function getDelete($modelId) { - // Check if the blog post exists + // Check if the model exists if (is_null($model = Model::find($modelId))) { // Redirect to the blogs management page return Redirect::to('assets/models')->with('error', Lang::get('admin/models/message.not_found')); } - // Delete the blog post + // Delete the model $model->delete(); - // Redirect to the blog posts management page + // Redirect to the models management page return Redirect::to('assets/models')->with('success', Lang::get('admin/models/message.delete.success')); } diff --git a/app/views/backend/categories/edit.blade.php b/app/views/backend/categories/edit.blade.php index 2e5e35ded6..6d3871c411 100755 --- a/app/views/backend/categories/edit.blade.php +++ b/app/views/backend/categories/edit.blade.php @@ -56,7 +56,7 @@
- Cancel + Cancel
diff --git a/app/views/backend/groups/create.blade.php b/app/views/backend/groups/create.blade.php index 2e4a38aa70..d679b61a75 100755 --- a/app/views/backend/groups/create.blade.php +++ b/app/views/backend/groups/create.blade.php @@ -83,9 +83,6 @@ Create a Group ::
Cancel - - -
diff --git a/app/views/backend/licenses/edit.blade.php b/app/views/backend/licenses/edit.blade.php index 472d5f8283..29d4d14478 100755 --- a/app/views/backend/licenses/edit.blade.php +++ b/app/views/backend/licenses/edit.blade.php @@ -16,9 +16,9 @@

@if ($license->id) Update License :: - @else + @else Create License :: - @endif + @endif
Back @@ -104,7 +104,7 @@
- Cancel + Cancel
diff --git a/app/views/backend/models/edit.blade.php b/app/views/backend/models/edit.blade.php index b024cfc7dc..724dd9d425 100755 --- a/app/views/backend/models/edit.blade.php +++ b/app/views/backend/models/edit.blade.php @@ -68,7 +68,7 @@
- Cancel + Cancel