iclop_v1/resources/views/admin/exercise/index.blade.php
2022-08-17 19:44:54 +07:00

69 lines
3.2 KiB
PHP
Raw Blame History

@extends('admin/admin')
@section('content')
<div class="row">
<div class="col-12">
<div class="card">
<div class="card-header">
<h3 class="card-title">APLAS Android Programming Exercise</h3>
<div class="card-tools">
<a href="{{ URL::to('/admin/exerciseconf/create')}}" class="btn btn-tool">
<i class="fa fa-plus"></i>
&nbsp; Add
</a>
</div>
</div>
<div class="card-body">
@if (Session::has('message'))
<div id="alert-msg" class="alert alert-success alert-dismissible">
<button type="button" class="close" data-dismiss="alert" aria-hidden="true"><EFBFBD></button>
{{ Session::get('message') }}
</div>
@endif
<div class="row">
<div class="col-md-12">
<table class="table table-bordered table-hover">
<thead>
<tr class="text-center">
<th>ID</th>
<th>Exercise Name</th>
<th>Stage Name</th>
<th>Description</th>
<th>Project Package</th>
<th>Folder Path</th>
<th>Action</th>
</tr>
</thead>
<tbody>
@foreach($entities as $entity)
<tr>
<td class="text-center">{{ $entity['id'] }}</td>
<td>{{ $entity['name'] }}</td>
<td>{{ $entity['stage'] }}</td>
<td>{{ $entity['desc'] }}</td>
<td>{{ $entity['packname'] }}</td>
<td>{{ $entity['projectpath'] }}</td>
<td class="text-center">
<form method="POST" action="{{ URL::to('/admin/exerciseconf/'.$entity['id']) }}">
{{ csrf_field() }}
<input type="hidden" name="_method" value="DELETE" />
<div class="btn-group">
<a class="btn btn-success" href="{{ URL::to('/admin/exerciseconf/'.$entity['id'].'/edit') }}"><i class="fa fa-pencil-alt"></i></a>
<button type="submit" class="btn btn-danger"><i class="fa fa-trash"></i></button>
</div>
</form>
</td>
</tr>
@endforeach
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
</div>
@endsection