Skip to content

Commit 28509a3

Browse files
committedMar 6, 2016
Part 18 - Saving our updated form data to the database and fixing a few errors from the last video
1 parent 0c4cbf9 commit 28509a3

File tree

2 files changed

+20
-3
lines changed

2 files changed

+20
-3
lines changed
 

‎app/Http/Controllers/PostController.php

+18-1
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,24 @@ public function edit($id)
9494
*/
9595
public function update(Request $request, $id)
9696
{
97-
//
97+
// Validate the data
98+
$this->validate($request, array(
99+
'title' => 'required|max:255',
100+
'body' => 'required'
101+
));
102+
// Save the data to the database
103+
$post = Post::find($id);
104+
105+
$post->title = $request->input('title');
106+
$post->body = $request->input('body');
107+
108+
$post->save();
109+
110+
// set flash data with success message
111+
Session::flash('success', 'This post was successfully saved.');
112+
113+
// redirect with flash data to posts.show
114+
return redirect()->route('posts.show', $post->id);
98115
}
99116

100117
/**

‎resources/views/posts/edit.blade.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
@section('content')
66

77
<div class="row">
8-
{!! Form::model($post, ['route' => ['posts.update', $post->id]]) !!}
8+
{!! Form::model($post, ['route' => ['posts.update', $post->id], 'method' => 'PUT']) !!}
99
<div class="col-md-8">
1010
{{ Form::label('title', 'Title:') }}
1111
{{ Form::text('title', null, ["class" => 'form-control input-lg']) }}
@@ -31,7 +31,7 @@
3131
{!! Html::linkRoute('posts.show', 'Cancel', array($post->id), array('class' => 'btn btn-danger btn-block')) !!}
3232
</div>
3333
<div class="col-sm-6">
34-
{!! Html::linkRoute('posts.update', 'Save Changes', array($post->id), array('class' => 'btn btn-success btn-block')) !!}
34+
{{ Form::submit('Save Changes', ['class' => 'btn btn-success btn-block']) }}
3535
</div>
3636
</div>
3737

0 commit comments

Comments
 (0)
Please sign in to comment.