/
home
/
techb158
/
ileadtechnology.com
/
resources
/
views
/
instructor
/
announcement
/
/home/techb158/ileadtechnology.com/resources/views/instructor/announcement
mkdir
upload
Name
Size
Mode
Actions
create.blade.php
3653
0644
edit
dl
rm
edit.blade.php
2351
0644
edit
dl
rm
index.blade.php
2706
0644
edit
dl
rm
Edit:
/home/techb158/ileadtechnology.com/resources/views/instructor/announcement/index.blade.php
(2706B)
@extends('admin/layouts.master') @section('title', 'All Announcement - 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.Course') }} {{ __('adminstaticword.Announcement') }}</h3> <a class="btn btn-info btn-sm" href="{{ url('instructor/announcement/create') }}">+ {{ __('adminstaticword.Add') }} {{ __('adminstaticword.Announcement') }}</a> </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.Announcement') }}</th> <th>{{ __('adminstaticword.Course') }}</th> <th>{{ __('adminstaticword.Status') }}</th> <th>{{ __('adminstaticword.Edit') }}</th> <th>{{ __('adminstaticword.Delete') }}</th> </tr> </thead> <tbody> <?php $i=0;?> @foreach($announs as $announ) <tr> <?php $i++;?> <td><?php echo $i;?></td> <td>{{$announ->announsment}}</td> <td>{{$announ->courses->title}}</td> <td> @if($announ->status==1) {{ __('adminstaticword.Active') }} @else {{ __('adminstaticword.Deactive') }} @endif </td> <td> <a class="btn btn-primary btn-sm" href="{{url('instructor/announcement/'.$announ->id)}}"><i class="glyphicon glyphicon-pencil"></i></a> </td> <td><form method="post" action="{{url('instructor/announcement/'.$announ->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 </table> </div> </div> <!-- /.box-body --> </div> <!-- /.box --> </div> <!-- /.col --> </div> <!-- /.row --> </section> @endsection
Save
cmd:
run