@extends('admin.head')
@section('middle')
<section class="content">
<a href="{{ url('add_slider') }}"><button class="btn btn-primary" style="float: right"><i class="glyphicon glyphicon-plus"></i>Add New Slider</button></a>
<div class="row">
<div class="col-xs-12">
<div class="box">
<div class="box-header">
<h3 class="box-title">Slider List</h3>
</div>
<!-- /.box-header -->
<div class="box-body">
<table id="example1" class="table table-bordered table-striped">
<thead>
<tr>
<th>Image</th>
<th>Action</th>
</tr>
</thead>
<tbody>
@foreach($sliders as $slider)
<tr>
<td style="width: 30%"><img style="width: 200px; height: 150px" src="{{ url('public/uploads/sliders/') }}/{{ $slider->image }}"></td>
<td style="width: 20%">
<a href="{{ url('edit_slider') }}/{{ $slider->id }}" class="btn btn-primary"><i class="glyphicon glyphicon-pencil"></i></a>
<a data-toggle="modal" data-target="#confirm-delete" data-href="{{ url('delete_slider') }}/{{ $slider->id }}" class="btn btn-danger"><i class="glyphicon glyphicon-trash"></i></a>
</td>
</tr>
@endforeach
</tbody>
</table>
</div>
<!-- /.box-body -->
</div>
<!-- /.box -->
</div>
<!-- /.col -->
</div>
<!-- /.row -->
</section>
@endsection
Anons79 File Manager Version 1.0, Coded By Anons79
Email: [email protected]