@extends('layouts.admin') @section('content')

{{$page_title}}

@php $i = 0;@endphp @foreach($news as $p) @php $i++;@endphp @endforeach
Sl No Title Category Description Created Date Action
{{ $i }} {{ substr(strip_tags($p->title),0,20) }}{{ strlen(strip_tags($p->title)) > 20 ? "..." : '' }} {{ $p->category->name }} {{ substr(strip_tags($p->description),0,50) }}{{ strlen(strip_tags($p->description)) > 50 ? "..." : '' }} {{ date('d-F-Y',strtotime($p->created_at)) }}
@endsection @section('scripts') @endsection