/
home
/
techb158
/
ileadtechnology.com
/
resources
/
views
/
admin
/
trusted
/
/home/techb158/ileadtechnology.com/resources/views/admin/trusted
mkdir
upload
Name
Size
Mode
Actions
edit.blade.php
2576
0644
edit
dl
rm
index.blade.php
2839
0644
edit
dl
rm
insert.blade.php
2955
0644
edit
dl
rm
Edit:
/home/techb158/ileadtechnology.com/resources/views/admin/trusted/index.blade.php
(2839B)
@extends('admin/layouts.master') @section('title', 'View Trusted - Admin') @section('body') <section class="content"> @include('admin.message') <div class="row"> <div class="col-md-12"> <div class="box box-primary"> <div class="box-header with-border"> <h3 class="box-title">{{ __('adminstaticword.TrustedSlider') }}</h3> <a class="btn btn-info btn-sm" href="{{url('trusted/create')}}"> <i class="glyphicon glyphicon-th-l">+</i> {{ __('adminstaticword.Add') }}</a> </div> <!-- /.box-header --> <div class="box-body"> <table id="example1" class="table table-bordered table-striped"> <thead> <tr> <th>#</th> <th>{{ __('adminstaticword.Image') }}</th> <th>{{ __('adminstaticword.URL') }}</th> <th>{{ __('adminstaticword.Status') }}</th> <th>{{ __('adminstaticword.Edit') }}</th> <th>{{ __('adminstaticword.Delete') }}</th> </tr> </thead> <tbody> <?php $i=0;?> @foreach($trusted as $trusted) <?php $i++;?> <tr> <td><?php echo $i;?></td> <td> <img src="images/trusted/<?php echo $trusted['image']; ?>"> </td> <td>{{$trusted->url}}</td> <td> @if($trusted->status==1) {{ __('adminstaticword.Active') }} @else {{ __('adminstaticword.Deactive') }} @endif </td> <td> <a class="btn btn-sm btn-info" href="{{url('trusted/'.$trusted->id)}}"> <i class="fa fa-pencil"></i></a> </td> <td> <form method="post" action="{{url('trusted/'.$trusted->id)}} "data-parsley-validate class="form-horizontal form-label-left"> {{ csrf_field() }} {{ method_field('DELETE') }} <button type="submit" class="btn btn-sm btn-danger"><i class="fa fa-trash"></i></button> </form> </td> </tr> @endforeach </tfoot> </table> </div> <!-- /.box-body --> </div> <!-- /.box --> </div> <!-- /.col --> </div> <!-- /.row --> </section> @endsection
Save
cmd:
run