Advertisement
Guest User

Untitled

a guest
Jun 19th, 2019
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. namespace AppHttpControllers;
  2.  
  3. use IlluminateHttpRequest;
  4. use AppPosts;
  5.  
  6. class PostController extends Controller
  7. {
  8. public function index()
  9. {
  10. $posts=Posts::latest()->paginate(5);
  11. // print_r($posts);exit;
  12. return view('post.index',compact($posts))
  13. ->with('i',(request()->input('page',1)-1)*5);
  14. }
  15.  
  16. @foreach($posts as $post)
  17.  
  18. <?php echo $post->title; ?>
  19. @endforeach
  20.  
  21. </table>
  22.  
  23. @endsection
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement