/
home
/
techb158
/
ileadtechnology.com
/
resources
/
views
/
admin
/
course
/
assignment
/
/home/techb158/ileadtechnology.com/resources/views/admin/course/assignment
mkdir
upload
Name
Size
Mode
Actions
course.blade.php
1636
0644
edit
dl
rm
index.blade.php
2861
0644
edit
dl
rm
view.blade.php
4052
0644
edit
dl
rm
Edit:
/home/techb158/ileadtechnology.com/resources/views/admin/course/assignment/course.blade.php
(1636B)
@extends('admin/layouts.master') @section('title', 'All Assignments - 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.AllAssignments') }}</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.ViewAssignments') }}</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">View Assignment</a> </td> @endforeach </tr> </tfoot> </table> </div> <!-- /.box-body --> </div> <!-- /.box --> </div> <!-- /.col --> </div> <!-- /.row --> </section> @endsection
Save
cmd:
run