我正在学习Laravel 8中的分页教程,但它没有起作用,这就是我所做的:
在BookingController.php 中
public function index()
{
$bookings = DB::table('bookings')->paginate(1);
return view('bookings.index')
->with('bookings', $bookings);
}
在Booking.php
class Booking extends Model
{
}
在index.blade.php 中
{{$bookings->links()}}
它没有显示任何错误,但它不起作用,有人知道吗?提前感谢
=>你可以试试这个,我可以使用这个分页链接它在laravel8上的工作。
{{$bookings->链接("分页::bootstrap-4"(}}