Manage Community

{{ Form::open( array('url' => action('CommunityController@getCommunity'), 'method'=>'post', 'id' => 'searchForm') ) }}
{{ Form::submit('Search', ['id' => 'searchBtn', 'class' => 'btn btn-primary']) }}
+
{{ Form::close() }}
{{-- START ALERT BLOCK --}} @if(Session::has('successMessage')) @endif @if(Session::has('dangerMessage') || count($errors)) @endif {{-- END ALERT BLOCK --}}
@php $n = "0"; @endphp @forelse($community as $com) {{-- START EDIT MODAL --}} {{-- END EDIT MODAL --}} @empty @endforelse
Uid. Name Image Thumb Image Header Description Active
{{-- ++$n --}} {{ $com->id }} {{ $com->name }} @if($com->image_thumb != '') @else @endif @if($com->image_header != '') @else @endif {{ $com->description }} {!! html_entity_decode(link_to_route('admin-del-community', '', [$com->id], ['onclick' => 'return checkDelete()', 'title' => 'Delete'])) !!} @if($com->status == 1) {!! html_entity_decode(link_to_route('admin-active-community', '', [$com->id], [ 'onclick' => 'return checkInActive()', 'title' => 'Activate'])) !!} @elseif($com->status == 0) {!! html_entity_decode(link_to_route('admin-inactive-community', '', [$com->id], [ 'onclick' => 'return checkActive()', 'title' => 'Deactivate'])) !!} @endif
No Records Found.