pixelfed/resources/views/account/activity.blade.php

29 lines
929 B
PHP

@extends('layouts.app')
@section('content')
<div class="container notification-page" style="min-height: 60vh;">
<div class="col-12 col-md-8 offset-2">
<ul class="list-group">
@foreach($notifications as $notification)
<li class="list-group-item notification">
@switch($notification->action)
@case('like')
<span class="notification-icon pr-3">
<img src="{{$notification->actor->avatarUrl()}}" width="32px" class="rounded-circle">
</span>
<span class="notification-text">
{!! $notification->rendered !!}
<span class="text-muted notification-timestamp pl-1">{{$notification->created_at->diffForHumans(null, true, true, true)}}</span>
</span>
<span class="float-right notification-action">
</span>
@break
@endswitch
</li>
@endforeach
</ul>
</div>
</div>
@endsection