@extends('layouts.app') @push('header')

What's New?

Stay informed with the latest updates, insights, and stories shaping the world of technology and innovation.

@endpush @section('content')
@foreach ($data as $value)
@if ($value->image_url == null) no-img @else {{ $value->slug }} @endif
{{ $value->title }}

{!! Str::words(strip_tags($value->content), 15, '...') !!}

{{ $value->created_at->format('d M Y') }}

@endforeach {!! $data->links('pagination::bootstrap-5') !!}
@endsection