#Part9 laravel 5 Blog Tutorial : Pagination with Eloquent & Query Builder in Laravel 5.3

Laravel 5 tutorial : create blog using laravel 5.3 part 9 how to create Pagination (paginate) with Eloquent and Query Builder in Laravel 5.3 for beginners

How to create blog using Laravel 5.3 - How to create Pagination (paginate method) using Eloquent and using Query builder in laravel 5.3.

Previews lessons, we have learned about simple CRUD operation in laravel 5.3, strarting from Create new data/post into database, edit the data, delete data from databases, validation and more.

if you still confused, just read our previews lessons :
  1. Deleting Data Using Eloquent Method in Laravel 5.3
  2. Update Database Recorded in laravel 5.3
  3. Create Data, Validation, Redirect Page and Flash Message

Pagination with Eloquent & Query Builder in Laravel 5.3

To create pagination in laravel project, we two method to do that, first Pagination using Query builder and next pagination using Eloquent.

pagination with Eloquent & Query Builder in Laravel 5.3

Pagination with Query Builder

at the our controller (BlogController.php) edit the Index function like this

BlogController.php

public function index()
    {
        // we will create index function
        // we need to show all data from "blog" table
        // $blogs = Blog::all();
        // first, pagination using query builder
        $blogs = DB::table('blog_post')->paginate(2);

        // pagination using Eloquent
        // $blogs = Blog::paginate(2);

        // show data to our view
        return view('blog.index',['blogs' => $blogs]);
    }

Pagination with Eloquent ORM

BlogController.php

public function index()
    {
        // we will create index function
        // we need to show all data from "blog" table
        // $blogs = Blog::all();
        // first, pagination using query builder
        // $blogs = DB::table('blog_post')->paginate(2);

        // pagination using Eloquent
        $blogs = Blog::paginate(2);

        // show data to our view
        return view('blog.index',['blogs' => $blogs]);
    }

Next, at the our index add link to pagination,

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>
  {{ date('F d, Y', strtotime($blog->created_at)) }}

  <p>{{ $blog->description }}</p>
  <a href="/blog/{{ $blog->id }}/edit">Edit this Post</a><br>
  <form class="" action="/blog/{{ $blog->id }}" method="post">
    <input type="hidden" name="_method" value="delete">
    <input type="hidden" name="_token" value="{{ csrf_token() }}">
    <input type="submit" name="name" value="delete">
  </form>
  <hr>
@endforeach

{!! $blogs->links() !!}

Video Tutorial Pagination with Eloquent & Query Builder 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: #Part9 laravel 5 Blog Tutorial : Pagination with Eloquent & Query Builder in Laravel 5.3
#Part9 laravel 5 Blog Tutorial : Pagination with Eloquent & Query Builder in Laravel 5.3
Laravel 5 tutorial : create blog using laravel 5.3 part 9 how to create Pagination (paginate) with Eloquent and Query Builder in Laravel 5.3 for beginners
https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhFrECPqg_B1maVexR1tYMQgobnoU24djou0J5yU2yLKuGyt8yiLwuupZRAmvL6ue7IbJt_nPihpZG6ahSJ_imoxqmYntLD7XxkcR5wagYj0yEWr2yaoIOkQQEYAUOvMij52CUmvl04i5E/s320/laravel-tutorial-for-beginner.png
https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhFrECPqg_B1maVexR1tYMQgobnoU24djou0J5yU2yLKuGyt8yiLwuupZRAmvL6ue7IbJt_nPihpZG6ahSJ_imoxqmYntLD7XxkcR5wagYj0yEWr2yaoIOkQQEYAUOvMij52CUmvl04i5E/s72-c/laravel-tutorial-for-beginner.png
KODE AJAIB
https://scqq.blogspot.com/2016/09/laravel-5-blog-tutorial-pagination-eloquent.html
https://scqq.blogspot.com/
https://scqq.blogspot.com/
https://scqq.blogspot.com/2016/09/laravel-5-blog-tutorial-pagination-eloquent.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