HomeLaravel

#Part5 laravel 5 Blog Tutorial : Insert Data, Validation, Redirect Page and Flash Message

Laravel 5 Tutorial for beginners : How to create blog using laravel 5.3 apps part5 about simple CURD Insert Data, Validation, Redirect Page and Flash Message in Laravel 5.3

Laravel 5 Tutorial : Setting Up Laravel 5.3 on Shared Hosting Server
Ebook Tutorial Laravel 5.3 PDF Bahasa Indonesia
Laravel 5 Tutorial : Login with Google, Twitter & Facebook in Laravel 5.3 Part 3
Create Blog using Laravel 5.3 - Next Lessons about How to create blog apps using Laravel 5 Insert Data, Validation, Redirect Page and Flash Message, to continue the previews lessons, we will make new function to create/insert new data into database and create the form validation, after all data hasbeen saved, we will create redirect page to home page and displaying the message.

At the previews lessons, we has create database and connect it form laravel project, than we have configuration Restful Controllers and Routing System in our project, and make an Model Eloquent & Displaying Data from Databaseif you still confused, just read Model Eloquent & Displaying Data from Database.

Insert Data, Validation, Redirect Page and Flash Message

Insert Data, Validation, Redirect Page and Flash Message

Add two function in our controller (BlogController.php) to show form insert data and will be proccess data into database

BlogController.php

public function create()
    {
        // we will return to our new views
        return view('blog.create');
    }

    /**
     * Store a newly created resource in storage.
     *
     * @param  IlluminateHttpRequest  $request
     * @return IlluminateHttpResponse
     */
    public function store(Request $request)
    {
        // we will create validation function here
        $this->validate($request,[
            'title'=> 'required',
            'description' => 'required',
        ]);

        $blog = new Blog;
        $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 updated!');
    }

Next, create new page for our Form insert data page (create.blade.php) will stored on resources\views\blog\create.blade.php

create.blade.php

<!-- @if (count($errors) > 0)
  <ul>
    @foreach ($errors->all() as $error )
      <li>{{ $error }}</li>
    @endforeach
  </ul>
@endif -->

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

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

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

next, in the index page (index.blade.php) add new session to get the message session after form create hasbeen redirect to index page.

index.blade.php

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

<h1>My First Blog</h1>
@foreach ($blogs as $blog)
  <h2>{{ $blog->title }}</h2>
  <p>{{ $blog->description }}</p>
  <hr>
@endforeach

Video tutorial Insert Data, Validation, Redirect Page and Flash Message



See you next Lessons .....

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


COMMENTS

DISQUS
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: #Part5 laravel 5 Blog Tutorial : Insert Data, Validation, Redirect Page and Flash Message
#Part5 laravel 5 Blog Tutorial : Insert Data, Validation, Redirect Page and Flash Message
Laravel 5 Tutorial for beginners : How to create blog using laravel 5.3 apps part5 about simple CURD Insert Data, Validation, Redirect Page and Flash Message in Laravel 5.3
https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhJKzV4mkuyKPL4_kcCcICF89kkBfPFeIw4lyR6g9RaM6APTfCAh9vW2vugsH11RJ5xYk439oupQ54DghWRJdw4gwU8P8qvXvh8c7KA94nTgByOC6l03pRRs41Eusp2i-NWfZZPwe5rFUw/s320/laravel-tutorial-for-beginner.png
https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhJKzV4mkuyKPL4_kcCcICF89kkBfPFeIw4lyR6g9RaM6APTfCAh9vW2vugsH11RJ5xYk439oupQ54DghWRJdw4gwU8P8qvXvh8c7KA94nTgByOC6l03pRRs41Eusp2i-NWfZZPwe5rFUw/s72-c/laravel-tutorial-for-beginner.png
KODE AJAIB
https://scqq.blogspot.com/2016/09/laravel-5-create-blog-insert-validation-redirect-page.html
https://scqq.blogspot.com/
https://scqq.blogspot.com/
https://scqq.blogspot.com/2016/09/laravel-5-create-blog-insert-validation-redirect-page.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