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

94 lines
4.9 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 Learning Files</h3>
<div class="card-tools">
<a href="{{ URL::to('/admin/learning/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>Topic Name</th>
<th>Guide Document</th>
<th>Test File(s)</th>
<th>Supplement File(s)</th>
<th>Other File(s)</th>
<th>Action</th>
</tr>
</thead>
<tbody>
@foreach($entities as $entity)
<tr>
<td>{{ $entity['name'] }}</td>
<td class="text-center">
<div class="btn-group">
<a class="btn btn-success" href="{{ URL::to('/download/guide/'.str_replace('learning/','',$entity['guide']).'/'.str_replace(' ','',$entity['name'])) }}"><i class="fa fa-download"></i>&nbsp;Download</a>
</div>
</td>
<td class="text-center">
<div class="btn-group">
<a class="btn btn-warning" href="{{ URL::to('/download/test/'.str_replace('learning/','',$entity['testfile']).'/'.str_replace(' ','',$entity['name'])) }}"><i class="fa fa-download"></i>&nbsp;Download</a>
</div>
</td>
<td class="text-center">
<div class="btn-group">
<a class="btn btn-primary" href="{{ URL::to('/download/supp/'.str_replace('learning/','',$entity['supplement']).'/'.str_replace(' ','',$entity['name'])) }}"><i class="fa fa-download"></i>&nbsp;Download</a>
</div>
</td>
<td class="text-center">
<div class="btn-group">
@if($entity['other'] !='')
<a class="btn btn-info" href="{{ URL::to('/download/other/'.str_replace('learning/','',$entity['other']).'/'.str_replace(' ','',$entity['name'])) }}" ><i class="fa fa-download"></i>&nbsp;Download</a>
@endif
</div>
</td>
<td class="text-center">
<form method="POST" action="{{ URL::to('/admin/learning/'.$entity['id']) }}">
{{ csrf_field() }}
<input type="hidden" name="_method" value="DELETE" />
<div class="btn-group">
<a class="btn btn-success" href="{{ URL::to('/admin/learning/'.$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 class="form-group">
<label for="description">How to Use</label>
<textarea id="howto" class="form-control" disabled rows="5">
1. Download guide, test, supplement, and other file for a learning topic.
2. Use Guide document to start and develop the Android project.
3. Use the necessary files in supplement folder to develop the Android project
4. After finished the project, use the test files in test folder validate the project.
</textarea>
</div>
</div>
</div>
</div>
</div>
@endsection