@extends('layout')
@section('header')
    
@endsection
@section('content')
    
        
            @if($actions->count())
                
                    
                        
                            | Nombre de usuario | 
                            Dirección IP | 
                            Actividad registrada | 
                        
                    
                    
                        @foreach($actions as $action)
                            
                                | {{$action->name}} | 
                                {{$action->ip_address}} | 
                                {{$action->action}} | 
                            
                        @endforeach
                    
                
                {!! $actions->render() !!}
            @else
                
No hay actividad registrada aún.
            @endif
        
 
     
@endsection