/
home
/
techb158
/
ileadtechnology.com
/
resources
/
views
/
admin
/
attandance
/
/home/techb158/ileadtechnology.com/resources/views/admin/attandance
mkdir
upload
Name
Size
Mode
Actions
index.blade.php
1637
0644
edit
dl
rm
Edit:
/home/techb158/ileadtechnology.com/resources/views/admin/attandance/index.blade.php
(1637B)
@extends('admin/layouts.master') @section('title', 'All Courses - Admin') @section('body') <section class="content"> @include('admin.message') <div class="row"> <div class="col-xs-12"> <div class="box box-primary"> <div class="box-header with-border"> <h3 class="box-title">{{ __('adminstaticword.CourseAvailable') }}</h3> </div> <!-- /.box-header --> <div class="box-body"> <table id="example1" class="table table-bordered table-striped table-responsive"> <thead> <tr> <th>#</th> <th>{{ __('adminstaticword.Course') }}</th> <th>{{ __('adminstaticword.UsersEnrolled') }}</th> </tr> </thead> <tbody> <?php $i=0;?> @foreach($courses as $course) <?php $i++;?> <tr> <td><?php echo $i;?></td> <td> <p><b>{{ __('adminstaticword.course') }}:</b> {{ $course['title'] }}</p> </td> <td> <a href="{{ route('list.assignment',$course->id) }}" class="btn btn-primary">{{ __('adminstaticword.UsersEnrolled') }}</a> </td> @endforeach </tr> </tfoot> </table> </div> <!-- /.box-body --> </div> <!-- /.box --> </div> <!-- /.col --> </div> <!-- /.row --> </section> @endsection
Save
cmd:
run