@extends('bo.layout') @section('content')

Alertes personnelles

@foreach($userAlerts as $alert) @endforeach
level
type
count
method
organisation
project
{{$alert->level}}
{{$alert->type}}
{{$alert->count}}
{{$alert->method}}
{{$alert->organisation_id ? $alert->organisation->name : ''}}
{{$alert->project_id ? $alert->project->name : ''}}

Alertes globales

@foreach($globalAlerts as $alert) @endforeach
level
type
count
method
organisation
project
{{$alert->level}}
{{$alert->type}}
{{$alert->count}}
{{$alert->method}}
{{$alert->organisation_id ? $alert->organisation->name : ''}}
{{$alert->project_id ? $alert->project->name : ''}}
@stop