@extends('layouts.app')
@section('content')
| S.No. |
Title |
Message |
Create Date |
Actions |
@foreach($updates as $key => $update)
| {{ $loop->iteration }} |
{{ $update->title }} |
{{ Str::limit($update->message, 100) }} |
{{ \Carbon\Carbon::parse($update->create_date)->format('d-m-Y') }} |
|
@endforeach
@endsection
@section('scripts')
@endsection