@extends('layouts.main')
@section('title', 'GLESEC Member Portal')
@section('breadcrumb')
Flash Advisory Report
- Home
- Flash Advisory Report
@endsection
@section('content')
# |
Date |
Title |
Month |
View |
Download |
@foreach ($reports as $key => $value)
{{$key+1}} |
{{date('m/d/Y',strtotime($value->updated_at))}} |
{!!$value->title!!} |
{{\Carbon\Carbon::parse($value->updated_at)->format('F')}} |
|
|
@endforeach
@endsection