@extends('layouts.master') @section('title', 'Notificaciones') @section('content')

Notificaciones

Notificaciones

@if(count($notificaciones))
@foreach ($notificaciones->reverse() as $notificacion)
user image {{ $notificacion->nombre }} {{ $notificacion->hace() }}

{!! $notificacion->descripcion !!}

@endforeach
@else

No Existen Registros


@endif

Informar Incidencia

{{ Form::open(['route' => 'cliente.notificaciones.informarIncidencia', 'method'=>'POST']) }} {{ Form::label('', "Informe", ['style'=>'font-weight: bold;']) }} * {{ Form::textarea('informe', null, ['required' => 'required', 'class'=>'form-control']) }}
{{ Form::submit('Informar', array('class'=> 'btn btn-success btn-lg btn-block'))}} {{ Html::linkRoute('cliente.notificaciones', 'Cancelar', null, array('class' => 'btn btn-danger btn-lg btn-block')) }} {{ Form::close() }}
@endsection @section('javascript') @endsection