/
home
/
techb158
/
ileadtechnology.com
/
resources
/
views
/
admin
/
question_report
/
/home/techb158/ileadtechnology.com/resources/views/admin/question_report
mkdir
upload
Name
Size
Mode
Actions
edit.blade.php
2099
0644
edit
dl
rm
index.blade.php
2763
0644
edit
dl
rm
Edit:
/home/techb158/ileadtechnology.com/resources/views/admin/question_report/index.blade.php
(2763B)
@extends('admin/layouts.master') @section('title', 'All Question Report - 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.Report') }} Question</h3> </div> <!-- /.box-header --> <div class="box-body"> <div class="table-responsive"> <table id="example1" class="table table-bordered table-striped"> <thead> <tr> <th>#</th> <th>{{ __('adminstaticword.User') }}</th> <th>{{ __('adminstaticword.Course') }}</th> <th>{{ __('adminstaticword.Question') }}</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($items as $item) <?php $i++;?> <tr> <td><?php echo $i;?></td> <td>{{$item->user['fname']}}</td> <td>{{$item->courses['title']}}</td> <td>{{$item->question['question']}}</td> <td>{{$item->title}}</td> <td>{{$item->email}}</td> <td>{{ str_limit($item->detail, $limit=50, $end="...")}}</td> <td> <a class="btn btn-primary btn-sm" href="{{url('user/question/report/'.$item->id)}}"> <i class="glyphicon glyphicon-pencil"></i></a> </td> <td> <form method="post" action="{{url('user/question/report'. $item->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> <!-- /.box --> </div> <!-- /.col --> </div> <!-- /.row --> </section> @endsection
Save
cmd:
run