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

{{ $title ?? 'Binary Black/White List' }}

Add New Blacklist

Binaries can be prevented from being added to the index if they match a regex in the blacklist. They can also be included only if they match a regex (whitelist). Click Edit or on the blacklist to enable/disable.

@if(count($binlist) > 0)
@foreach($binlist as $bin) @endforeach
ID Group Description Type Field Status Regex Last Activity Actions
{{ $bin->id }} {{ str_replace('alt.binaries', 'a.b', $bin->groupname) }} {{ $bin->description }} @if($bin->optype == 1) Black @else White @endif @if($bin->msgcol == 1) Subject @elseif($bin->msgcol == 2) Poster @else MessageID @endif @if($bin->status == 1) Active @else Disabled @endif @if($bin->last_activity) {{ $bin->last_activity }} @else Never @endif
Total entries: {{ count($binlist) }} Add New Blacklist
@else

No blacklist entries found

Get started by adding your first blacklist entry.

Add New Blacklist
@endif
@push('scripts') @endpush @endsection