@extends('layouts.main')
@section('breadcrumb')
    
        
            
                GLESEC Cybersecurity News
                
                    - Home
 
                    - GLESEC Cybersecurity News
 
                
                
             
         
     
@endsection
@section('content')
        
          @include('flash::message')
          
          
              
                  {!! Form::open(['url' => ['news'], 'method' => 'get','autocomplete'=>'off']) !!}
                      @include('news.filter')
                  {!! Form::close() !!}
              
           
          @if(Request::get('crn')&&!empty($crn_list))
            
          @endif
          
            @if(Request::get('crn')&&empty($crn_list))
              
No news selected for the Custom Report yet.
 You can do this by pressing the 'Add to Custom Report' button on the News preview page.
            @else
              @include('news.table')
            @endif
          
          @if(Request::get('crn')&&!empty($crn_list))
            
          @endif
          @if(!Request::get('crn'))
            
              
                @if($news->total() >= $news->perPage())
                    {{ $news->links() }}
                @endif
              
             
          @endif
@endsection
@section('footer_scripts')
@endsection