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

{{-- --}} Client Management Dashboard
Client Management Dashboard

Add New Client

View All View Inactive Clients

Inactive Clients
{{-- --}} @foreach($client as $row) @if($row->status =="Inactive") @endif @endforeach
SL Name Address Telephone Number Email Person In Charge 1 Person In Charge 2StatusACTION
{{ $row->id}} {{ $row->name}} {{ $row->address }} {{ $row->tel_no}} {{ $row->email}} @if($row->person_incharge1!='null') {{ $row->person_incharge1}} @endif @if($row->person_incharge2!='null') {{ $row->person_incharge2}} @endif Activate {{-- Edit--}} {{-- @if($row->switch =="new")--}} {{-- START VOTE--}} {{-- @endif--}} {{-- @if($row->switch =="published")--}} {{-- VIEW RESULT--}} {{-- @endif--}} {{-- @if($row->switch =="hide")--}} {{-- VIEW RESULT--}} {{-- @endif--}} {{-- @if($row->switch =="hide")--}} {{-- UNHIDDEN--}} {{-- @endif--}}

{{-- --}}{{-- end--}} {{--
--}} {{-- --}} {{-- show lecturer--}} {{-- --}} {{-- --}} {{-- --}}
All Active Clients
{{-- --}} @foreach($client as $row) @if($row->status =="Active") @endif @endforeach
SL Name Address Telephone Number Email Person In Charge 1 Person In Charge 2StatusACTION
{{ $row->id}} {{ $row->name}} {{ $row->address }} {{ $row->tel_no}} {{ $row->email}} @if($row->person_incharge1!='null') {{ $row->person_incharge1}} @endif @if($row->person_incharge2!='null') {{ $row->person_incharge2}} @endif Deactivate Edit {{-- @if($row->switch =="new")--}} {{-- START VOTE--}} {{-- @endif--}} {{-- @if($row->switch =="published")--}} {{-- VIEW RESULT--}} {{-- @endif--}} {{-- @if($row->switch =="finished")--}} {{-- PUBLISH RESULT--}} {{-- @endif--}} {{-- @if($row->switch =="finished")--}} {{-- VIEW RESULT--}} {{-- @endif--}} {{-- @if($row->switch =="published")--}} {{-- UNDO PUBLISH--}} {{-- @endif--}}
@endsection