@extends('Company.layout.master') @section('title',"Post List") @section('page_name',"Post List") @section('content')
@if(session('success')) @endif
Scholarship Posts
Add Post
@foreach($data as $d) @endforeach
SL Title Content Views Created At Actions
{{$loop->iteration}} {{Str::limit($d->title,20)}} {{Str::limit($d->body,40)}} 0 {{$d->created_at->diffForHumans()}}
@csrf @method('DELETE')
@endsection