Unverified Commit 0d3df30c authored by Viral Solani's avatar Viral Solani Committed by GitHub

Merge pull request #68 from viralsolani/analysis-8Q4L4P

Apply fixes from StyleCI
parents afa63fb5 2035fef6
......@@ -17,7 +17,7 @@ use App\Repositories\Backend\Blogs\BlogsRepository;
class BlogsController extends Controller
{
/**
* Blog Status
* Blog Status.
*/
protected $status = [
'Published' => 'Published',
......@@ -47,7 +47,7 @@ class BlogsController extends Controller
public function index(ManageBlogsRequest $request)
{
return view('backend.blogs.index')->with([
'status'=> $this->status
'status'=> $this->status,
]);
}
......@@ -64,7 +64,7 @@ class BlogsController extends Controller
return view('backend.blogs.create')->with([
'blogCategories' => $blogCategories,
'blogTags' => $blogTags,
'status'=> $this->status
'status' => $this->status,
]);
}
......@@ -102,7 +102,7 @@ class BlogsController extends Controller
'blogTags' => $blogTags,
'selectedCategories' => $selectedCategories,
'selectedtags' => $selectedtags,
'status'=> $this->status
'status' => $this->status,
]);
}
......
......@@ -94,7 +94,7 @@ class BlogsRepository extends BaseRepository
}
/**
* Update Blog
* Update Blog.
*
* @param $blogs
* @param array $input
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment