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

{{ trans('Flussonic Log') }}

@if (count($errors) > 0) @if($errors->any()) @endif @endif
@csrf
{!! Form::select( 'bulk_search[]', $channels, $bulk_search, ['class'=>'form-control', 'id'=>'bulk_search', 'multiple'=>''] ) !!}
{{--
--}}
Clear Back to All Data
@foreach($data as $index => $row) @endforeach
S no Channel Name IP Action
{{ $index + 1 }} {{ $row->channel_name }} {{ $row->ip }} View
@if ($data->count() > 0) {{ $data->appends(request()->except('page'))->links() }} @endif
@endsection