/
home
/
techb158
/
ileadtechnology.com
/
resources
/
views
/
instructor
/
answer
/
/home/techb158/ileadtechnology.com/resources/views/instructor/answer
mkdir
upload
Name
Size
Mode
Actions
add.blade.php
3648
0644
edit
dl
rm
edit.blade.php
2620
0644
edit
dl
rm
index.blade.php
2356
0644
edit
dl
rm
Edit:
/home/techb158/ileadtechnology.com/resources/views/instructor/answer/index.blade.php
(2356B)
@extends('admin/layouts.master') @section('title', 'All Answers - Instructor') @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.Answer') }}</h3> </div> <!-- /.box-header --> <div class="box-body"> <div class="table-responsive"> <table id="example1" class="table table-bordered table-striped"> <thead> <th>#</th> <th>{{ __('adminstaticword.Answer') }}</th> <th>{{ __('adminstaticword.Question') }}</th> <th>{{ __('adminstaticword.Course') }}</th> <th>{{ __('adminstaticword.Status') }}</th> <th>{{ __('adminstaticword.Edit') }}</th> <th>{{ __('adminstaticword.Delete') }}</th> </tr> </thead> <tbody> <?php $i=0;?> @foreach($answers as $ans) <tr> <?php $i++;?> <td><?php echo $i;?></td> <td>{{$ans->answer}}</td> <td>{{$ans->question->question}}</td> <td>{{$ans->courses->title}}</td> <td> @if($ans->status==1) {{ __('adminstaticword.Active') }} @else {{ __('adminstaticword.Deactive') }} @endif </td> <td> <a class="btn btn-primary btn-sm" href="{{url('instructoranswer/'.$ans->id)}}"><i class="glyphicon glyphicon-pencil"></i></a> </td> <td><form method="post" action="{{url('instructoranswer/'.$ans->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 </tfoot> </table> </div> </div> <!-- /.box-body --> </div> <!-- /.box --> </div> <!-- /.col --> </div> <!-- /.row --> </section> @endsection
Save
cmd:
run