没有样式的Laravel分页

时间:2018-10-31 11:59:55

标签: css laravel-5

下面是我的代码:

field(name("tiedosto", "id"))

下面是控制器中的代码:

<tbody>
                        @foreach($posts as $post)

                            <tr>
                                <th>{{ $post->id }}</th>                            
                                <td>{{ $post->title }}</td>
                                <td>{{ substr($post->body, 0, 50) }} {{ strlen($post->body) > 50 ? "..." : "" }}</td>
                                <td>{{ date('M j,Y h:i a',strtotime($post->created_at)) }}</td>
                                <td>
                                    <a href="{{ route('posts.show', $post->id) }}" class="btn btn-default btn-sm">View</a>
                                    <a href="{{ route('posts.edit', $post->id) }}" class="btn btn-delete btn-sm">Edit</a>                                  
                                </td>
                            </tr>

                        @endforeach
                    </tbody>
                </table>

                <div class="text-center">
                    {{ $posts->links() }}
                </div>

尽管如此,我仍然没有正确的样式! Bootstrap styles not applied. See the image.

1 个答案:

答案 0 :(得分:0)

这是新的Bootstrap版本4.1(带有Laravel的最新版本)的问题。

我尝试使用引导程序的早期版本,现在已解决。