@extends('admin.layouts.app')
@section('newstitle', 'Newss')
@push('topnav')
News
@endpush
@section('content')
{{-- --}}
S.No |
Title |
{{-- Date | --}}
Action |
@foreach ($newss as $pk => $p)
{{ $newss->firstItem() + $pk }} |
{{ $p->title }} |
{{-- {{ date('d-m-Y', strtotime($p->created_at)) }} | --}}
Edit
Delete
|
@endforeach
{{ $newss->appends(request()->input())->links('pagination.admin') }}
@endsection