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

{{ trans('Flussonic Log') }}

@if (count($errors) > 0) @if($errors->any()) @endif @endif
@csrf
@foreach($data as $index => $row) @endforeach
S no Channle Name IP Server Name Created At
{{ $index + 1 }} {{ $row->channel_name }} {{ $row->ip }} {{ $row->server_name }} {{ $row->created_time }}
@if ($data->count() > 0) {{ $data->appends(request()->except('page'))->links() }} @endif
@endsection