M1n1 Shira0ka File Manager

Current Path : /home/bullgymbny/app2/resources/views/
Upload File :
Current File : /home/bullgymbny/app2/resources/views/notifications.blade.php

@extends('layouts.app')



@section('content')

    <h2>Logs</h2>



    <table class="table">

        <thead>

        <tr>

            <th scope="col">Photo</th>

            <th scope="col">Membre</th>

            <th scope="col">Notification</th>

            <th scope="col">Il y a</th>

            <th scope="col">Date</th>

        </tr>

        </thead>

        <tbody>

        @foreach($notifications as $notif)

            <tr style="color:white;background-color: @switch($notif->gravity) @case(0) {{ '#28a745' }} @break @case(1) {{ '#856404' }} @break @case(2) {{ '#dc3545' }} @break @endswitch">

            @if(!empty($notif->member))

                <td>

                    @if(!empty($notif->member->photo))

                        <img style="width:100px" src="{{ route('avatar', $notif->member) }}" />

                    @endif

                </td>

                <td>{{ $notif->member->lastname . ' ' . $notif->member->firstname }}</td>

                <td>{{ $notif->log }}</td>

                <td>{{ $notif->get_delay() }}</td>

                <td>{{ $notif->get_date() }}</td>

            @else

                <td></td>

                <td></td>

                <td>{{ $notif->log }}</td>

                <td>{{ $notif->get_delay() }}</td>

                <td>{{ $notif->get_date() }}</td>

            @endif

            </tr>

        @endforeach

        </tbody>

    </table>

@endsection

GO Party By You