		<div class="portlet box bg-green-haze">
			<div class="modal-header" style="color: #fff;">
				<button type="button" data-dismiss="modal" style="float: right;background-repeat: no-repeat !important;    background: 0px 0px;color:white;border:0px;"><i class="fa fa-times fa-2x"></i></button>
				<h4 class="modal-title"><i class="fa fa-users"></i>&nbsp;代辦事項</h4>
			</div>
			<div class="portlet-body">
				<div class="tab-content white">
					<div class="table-toolbar">
						<div class="row">
							<div class="col-md-12">
								<a id="btn_function_matter_add" class="btn btn-info">新增事項</a>
							</div>
						</div>
					</div>
				</div>
			</div>
			<div class="portlet-body">
				<div class="tab-content">
					<div class="tab-pane active">
						<table class="table table-striped table-bordered table-hover data_table_firm">
						<thead>
							<tr>
								<th>
									反應時間
								</th>
								<th>
									項目
								</th>
								<th>
									 重要性
								</th>
								<th style="width:20%;">
									主旨
								</th>
								<th style="width:20%;">
									狀況
								</th>
								<th>
									 反映人
								</th>
								<th>
									 狀態
								</th>
							
							</tr>
							</thead>
							<tbody>
								<?php foreach($matter as $one): ?>
								<tr>
									<td>
										<?php echo e($one->time_report); ?>

									</td>
									<td>
										<?php echo e($one->matters_item); ?>

									</td>
									<td>
										<?php echo e($one->matters_important); ?>

									</td>
									<td>
										<?php echo e($one->matters_subject); ?>

									</td>
									<td>
										<?php echo e($one->matters_situation); ?>

									</td>
									<td>
										<?php echo e($one->name); ?>

									</td>
									<td>
										<?php if($one->status == 0): ?> 
										<label class="label label-info">已處理</label>
										<?php else: ?> 
										<label class="label label-danger">未處理</label>
										<?php endif; ?>
									</td>
								</tr>
								<?php endforeach; ?>
								</tbody>
						</table>
					</div>
				</div>
			</div>
		</div>