timegridio/timegrid

View on GitHub
resources/views/user/notifications.blade.php

Summary

Maintainability
A
0 mins
Test Coverage
@extends('layouts.user')

@section('content')

    @foreach ($notifications as $notification)
        <div class="well">
            {{ $notification->from_id }} {{ $notification->text }}
        </div>
    @endforeach

@endsection