@extends('layouts.admin.admin') @section('content')
All News and Blogs
@include('layouts.admin.alerts') @if (count($nb_information)>0) @foreach ($nb_information as $key => $item) @endforeach
# Title Type Image Action
{{ $key+1 }} {{ Illuminate\Support\Str::limit($item->title, 30, $end='...') }} {{ $item->type }} {{$item->type}}.img Edit
@csrf
@else
No News/Blog Added Yet
@endif
@endsection