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

Blacklist

{!! Form::open(['url' => 'backdoor/blacklist/search', 'class' => 'form-inline', 'role' => 'form', 'autocomplete' => 'off']) !!}
{!! Form::text('search', $search, ['class' => 'form-control', 'placeholder' => 'search blacklist', 'required']) !!}
{!! Form::button('', ['class' => 'btn btn-outline-secondary', 'type' => 'submit', 'title' => 'Search']) !!}
{!! Form::close() !!}
@if($blacklist->isEmpty())
No record(s) found.
@else @foreach($blacklist as $bl) @endforeach
Mobile Number Remarks
{{ $bl->b_number }} {{ $bl->b_remarks }}
@if($blacklist->render()) @endif @endif
@stop