/
home
/
techb158
/
ileadtechnology.com
/
resources
/
views
/
admin
/
course
/
reviewreport
/
/home/techb158/ileadtechnology.com/resources/views/admin/course/reviewreport
mkdir
upload
Name
Size
Mode
Actions
edit.blade.php
2354
0644
edit
dl
rm
index.blade.php
2095
0644
edit
dl
rm
Edit:
/home/techb158/ileadtechnology.com/resources/views/admin/course/reviewreport/index.blade.php
(2095B)
<section class="content"> @include('admin.message') <div class="row"> <div class="box-body"> <div class="table-responsive"> <table id="example1" class="table table-bordered table-striped"> <thead> <br> <tr> <th>#</th> <th>{{ __('adminstaticword.User') }}</th> <th>{{ __('adminstaticword.Course') }}</th> <th>{{ __('adminstaticword.Title') }}</th> <th>{{ __('adminstaticword.Email') }}</th> <th>{{ __('adminstaticword.Detail') }}</th> <th>{{ __('adminstaticword.Edit') }}</th> <th>{{ __('adminstaticword.Delete') }}</th> </tr> </thead> <tbody> <?php $i=0;?> @foreach($reports as $report) <tr> <?php $i++;?> <td><?php echo $i;?></td> <td>{{$report->user['fname']}}</td> <td>{{$report->courses['title']}}</td> <td>{{$report->title}}</td> <td>{{$report->email}}</td> <td>{{$report->detail}}</td> <td> <a class="btn btn-primary btn-sm" href="{{url('reports/'.$report->id)}}"> <i class="glyphicon glyphicon-pencil"></i></a> </td> <td><form method="post" action="{{url('reports/'. $report->id)}} "data-parsley-validate class="form-horizontal form-label-left"> {{ csrf_field() }} {{ method_field('DELETE') }} <button type="submit" class="btn btn-danger"><i class="fa fa-fw fa-trash-o"></i></button> </form> </td> </tr> @endforeach </tbody> </table> </div> </div> <!-- /.box-body --> </div> <!-- /.row --> </section>
Save
cmd:
run