class indexCo extends Controller{ public function cc () { $lists = UserAli:: orderBy('user_id','desc') -> paginate(5); return view('cc',compact('lists')); }}
layout/main.blade.php
<!DOCTYPE html><html> <head> <title>Home</title> <link rel="stylesheet" href="http://cdn.bootcss.com/bootstrap/3.3.4/css/bootstrap.min.css" rel="external nofollow" rel="external nofollow" > </head> <body> <h1>Home</h1> <p>Welcome to My web</p> </body></html><!DOCTYPE html><html> <head> <title>About</title> </head> <body> <h1>About</h1> <p>This is my first Laravel web</p> @yield("content") </body></html>