@extends('layouts/contentLayoutMaster') @section('title', 'Management Posts') @section('vendor-style') {{-- Page Css files --}} @endsection @section('page-style') {{-- Page Css files --}} @endsection @section('content')
@include('content.partial.form-message')

Posts List

input("search")) }}"/>
Reset
@can('Administration - Posts - Add') Add New Post @endcan

@if($posts->total()) Records {{ ( $posts->currentPage() - 1 ) * $posts->perPage() + 1 }} to {{ ( $posts->currentPage() - 1 ) * $posts->perPage() + $posts->count() }} from {{ $posts->total() }} Records @else No Record @endif

@foreach( $posts as $post ) @endforeach
ID Name Action
{{ $post->id }} {{ $post->name }}
{{ $posts->appends($_REQUEST)->fragment('top-list')->links('vendor.pagination.bootstrap-5') }}
@endsection @section('vendor-script') {{-- Vendor js files --}} @endsection @section('page-script') @endsection