#Part7 laravel 5 Blog Tutorial : Update Database Recorded in laravel 5.3

Laravel 5 tutorial for beginners : how to create blog apps using Laravel 5.3 part7 about update database record in Laravel 5.3 for beginner

Create blog using laravel 5.3 part7 - this lessons about how to Update data into Database Recored in laravel 5.3 apps/blog. At the previews lessons, we have learned about displaying data from database, make a new form to create new data and save it into database, validation, create single page, error valitaion in laravel 5.3, you just read that tutorial read previews lessons :
  1. Create Single Page and 404 Page in laravel 5.3
  2. Insert Data, Validation, Redirect Page and Flash Message
  3. Etc..

Next, we will learn how to edit and delete data/articel using Eloquent Orm method.
Updating Database Record

at the our Controller (BlogController.php) we need add some function, that is "edit function" dan "update function"

Update Database Recored in laravel 5.3

Edit Function

public function edit($id)
    {
        // edit function here
        $blog = Blog::find($id);

        // return to 404 page
        if(!$blog){
          abort(404);
        }
        // display the article to single page
        return view('blog.edit')->with('blog',$blog);
    }

Update Function

public function update(Request $request, $id)
    {
      // we will create validation function here
      $this->validate($request,[
          'title'=> 'required',
          'description' => 'required',
      ]);

      $blog = Blog::find($id);
      $blog->title = $request->title;
      $blog->description = $request->description;
      // save all data
      $blog->save();
      //redirect page after save data
      return redirect('blog')->with('message','data hasbeen edited!');
    }

Next, add new views in the \resources\views\blog folder (edit.blade.php)

edit.blade.php

<h2>Edit Article Post</h2>
<form class="" action="/blog/{{ $blog->id }}" method="post">
  <input type="text" name="title" value="{{ $blog->title }}" placeholder="this is title"><br>
  {{ ($errors->has('title')) ? $errors->first('title') : '' }} <br>

  <textarea name="description" rows="8" cols="40" placeholder="this is description">{{ $blog->description }}</textarea><br>
  {{ ($errors->has('description')) ? $errors->first('description') : '' }} <br>

  <input type="hidden" name="_method" value="put">
  <input type="hidden" name="_token" value="{{ csrf_token() }}">
  <input type="submit" name="name" value="edit">
</form>

Next, to create a link to the edit pages, we need update our Index page (index.blade.php)

index.blade.php

{{ Session::get('message') }}

<h1>My First Blog</h1>
@foreach ($blogs as $blog)
  <h2><a href="/blog/{{ $blog->id }}">{{ $blog->title }}</a></h2>
  <p>{{ $blog->description }}</p>
  <a href="/blog/{{ $blog->id }}/edit">Edit this Post</a>
  <hr>
@endforeach

Video Tutorial Update Database Recored in laravel 5.3


See you next lessons...

COMMENTS


Feel free to code it up and send us a pull request.

Hi everyone, let's me know how much this lesson can help your work. Please Subscribe and Follow Our Social Media 'kodeajaib[dot]com' to get Latest tutorials and will be send to your email everyday for free!, Just hit a comment if you have confused. Nice to meet you and Happy coding :) all ^^



Follow by E-Mail


Name

ADO.NET,3,Ajax,6,Android,9,AngularJS,4,ASP.NET,4,Blogger Tutorials,7,Bootstrap,7,C++,1,Codeigniter,2,Cplusplus,6,Crystal Report,6,CSharp,25,Ebook Java,2,FlyExam,1,FSharp,3,Game Development,2,Java,35,JDBC,2,Laravel,89,Lumen,2,MariaDB,2,Ms Access,3,MySQL,31,ODBC,6,OleDB,1,PHP,14,PHP Framework,6,PHP MYSQLI,9,PHP OOP,5,Python,8,Python 3,4,SQL Server,4,SQLite,4,Uncategorized,5,Vb 6,2,Vb.Net,89,Video,48,Vue Js,4,WPF,2,Yii,3,
ltr
item
KODE AJAIB: #Part7 laravel 5 Blog Tutorial : Update Database Recorded in laravel 5.3
#Part7 laravel 5 Blog Tutorial : Update Database Recorded in laravel 5.3
Laravel 5 tutorial for beginners : how to create blog apps using Laravel 5.3 part7 about update database record in Laravel 5.3 for beginner
https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiPDSMa55wawMwoLsK0BC3FuvFGAjIN62VUFAfHGLi2FMRntixANcxaEoIMu0t8S8SSHyc8bZWtEd0b4UDGGMFzjAq0UrtmsDQ1wo95_Pd1aRV6SKAU9Z1TC4m8ZxRm9QOrXLWwHE6N7Bs/s320/laravel-tutorial-for-beginner.png
https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiPDSMa55wawMwoLsK0BC3FuvFGAjIN62VUFAfHGLi2FMRntixANcxaEoIMu0t8S8SSHyc8bZWtEd0b4UDGGMFzjAq0UrtmsDQ1wo95_Pd1aRV6SKAU9Z1TC4m8ZxRm9QOrXLWwHE6N7Bs/s72-c/laravel-tutorial-for-beginner.png
KODE AJAIB
https://scqq.blogspot.com/2016/09/laravel-5-blog-tutorial-update-database.html
https://scqq.blogspot.com/
https://scqq.blogspot.com/
https://scqq.blogspot.com/2016/09/laravel-5-blog-tutorial-update-database.html
true
3214704946184383982
UTF-8
Loaded All Posts Not found any posts VIEW ALL Readmore Reply Cancel reply Delete By Home PAGES POSTS View All RECOMMENDED FOR YOU LABEL ARCHIVE SEARCH ALL POSTS Not found any post match with your request Back Home Sunday Monday Tuesday Wednesday Thursday Friday Saturday Sun Mon Tue Wed Thu Fri Sat January February March April May June July August September October November December Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec just now 1 minute ago $$1$$ minutes ago 1 hour ago $$1$$ hours ago Yesterday $$1$$ days ago $$1$$ weeks ago more than 5 weeks ago Followers Follow THIS CONTENT IS PREMIUM Please share to unlock Copy All Code Select All Code All codes were copied to your clipboard Can not copy the codes / texts, please press [CTRL]+[C] (or CMD+C with Mac) to copy