/
home
/
techb158
/
ileadtechnology.com
/
resources
/
views
/
instructor
/
question
/
/home/techb158/ileadtechnology.com/resources/views/instructor/question
mkdir
upload
Name
Size
Mode
Actions
add.blade.php
3434
0644
edit
dl
rm
edit.blade.php
2854
0644
edit
dl
rm
index.blade.php
2385
0644
edit
dl
rm
Edit:
/home/techb158/ileadtechnology.com/resources/views/instructor/question/index.blade.php
(2385B)
@extends('admin/layouts.master') @section('title', 'All Questions - 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">Course Questions</h3> <a class="btn btn-info btn-sm" href="{{ url('instructorquestion/create') }}">+ Add New Question</a> </div> <!-- /.box-header --> <div class="box-body"> <div class="table-responsive"> <table id="example1" class="table table-bordered table-striped"> <thead> <tr> <th>Course</th> <th>Question</th> <th>Status</th> <th>Edit</th> <th>Delete</th> </tr> </thead> <tbody> @foreach($questions as $que) <tr> <td>{{$que->courses->title}}</td> <td>{{$que->question}}</td> <td> <form action="{{ route('ansr.quick',$que->id) }}" method="POST"> {{ csrf_field() }} <button type="Submit" class="btn btn-xs {{ $que->status ==1 ? 'btn-success' : 'btn-danger' }}"> @if($que->status ==1) Active @else Deactive @endif </button> </form> </td> <td> <a class="btn btn-success btn-sm" href="{{url('instructorquestion/'.$que->id)}}"><i class="glyphicon glyphicon-pencil"></i></a> </td> <td> <form method="post" action="{{url('instructorquestion/'.$que->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