@extends('layouts.admin') @section('content')

Post Shares

@foreach($shares as $index => $like) @endforeach
Sl No Full Name Username Email Shared On
{{ $index + 1 }} {{ $like->user->first_name ?? '' }} {{ $like->user->last_name ?? '' }} {{ $like->user->username ?? 'NA' }} {{ $like->user->email ?? 'NA' }} {{ dateInCustomTimezone($like->created_at) }}
Back
@endsection @section('script') @endsection