@extends('dashboard.layouts.main')
@section('container')
Kegiatan
@if(session()->has('success'))
{{ session('success') }}
@endif
Tambah data
# |
Judul |
Kategori |
Aksi |
@foreach($posts as $post)
{{ $loop->iteration + ($posts->currentPage() - 1) * $posts->perPage() }} |
{{ $post->title }} |
{{ $post->category->name }} |
|
@endforeach
{{ $posts->links() }}
@endsection