Manage Owner

{{ Form::open(['route' => 'admin-owner']) }}
{{ 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($owners as $owner) {{-- START EDIT MODAL --}} @endforelse
Uid. First Name Last Name Company Address City owner Zip Code Phone No. Email Website Facebook Active
{{ ++$n }} {{ $owner->first_name or 'NA' }} {{ $owner->last_name or 'NA' }} {{ $owner->company or 'NA' }} {{ $owner->address or 'NA' }} {{ $owner->city or 'NA'}} {{ $owner->state or 'NA' }} {{ $owner->zip_code or 'NA' }} {{ $owner->phone or 'NA' }} {{ $owner->email or 'NA' }} {{ $owner->website or 'NA' }} {{ $owner->facebook or 'NA' }} {!! html_entity_decode(link_to_route('admin-del-owner', '', [$owner->id], ['onclick' => 'return checkDelete()', 'title' => 'Delete'])) !!} @if($owner->status == 1) {!! html_entity_decode(link_to_route('admin-active-owner', '', [$owner->id], [ 'onclick' => 'return checkInActive()', 'title' => 'Activate'])) !!} @elseif($owner->status == 0) {!! html_entity_decode(link_to_route('admin-inactive-owner', '', [$owner->id], [ 'onclick' => 'return checkActive()', 'title' => 'Deactivate'])) !!} @endif
No Records Found.