Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
peter-mw committed Feb 19, 2022
1 parent c3c25ae commit f7f5d41
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Expand Up @@ -36,7 +36,7 @@ public function create() {
public function edit(Request $request, $id) {

return $this->view('content::admin.content.edit', [
'content_id'=>$id
'content_id'=>intval($id)
]);
}
}
Expand Up @@ -32,7 +32,7 @@ public function create() {
public function edit(Request $request, $id) {

return $this->view('page::admin.page.edit', [
'content_id'=>$id
'content_id'=>intval($id)
]);
}
}
Expand Up @@ -34,7 +34,7 @@ public function create() {
public function edit(Request $request, $id) {

return $this->view('post::admin.posts.edit', [
'content_id'=>$id
'content_id'=>intval($id)
]);
}
}
Expand Up @@ -32,7 +32,7 @@ public function create() {
public function edit(Request $request, $id) {

return $this->view('product::admin.product.edit', [
'content_id'=>$id
'content_id'=>intval($id)
]);
}
}

0 comments on commit f7f5d41

Please sign in to comment.