有没有办法在Laravel 8中显示最新的博客post?
Is there a way to display the latest blog post in Laravel 8?
在laravel 8中,我想在特定位置显示单个post。当我添加新的 post 它并像实时一样自动显示 post。
您可以使用以下代码
获取最新的post
Post::latest()->first();
在laravel 8中,我想在特定位置显示单个post。当我添加新的 post 它并像实时一样自动显示 post。
您可以使用以下代码
获取最新的postPost::latest()->first();