Current File : /home/tradevaly/demo.tradevaly.com.bd/resources/views/backend/sizes/index.blade.php |
@extends('layouts.backend')
@section('content')
<!-- Container Fluid-->
<div class="row">
<div class="col-lg-12">
<!-- Form Basic -->
<div class="card mb-4">
<div class="card-header card-header-modify py-3 d-flex flex-row align-items-center justify-content-between">
<h6 class="m-0 font-weight-bold text-heading-bar">Size</h6>
<a href="{{route('sizes.create')}}" class="btn btn-default-index btn-sm text-right "><i class="fas fa-plus-circle"></i> Add Size</a>
</div>
<div class="card-body">
<table class="table table-bordered">
<tr>
<th>No</th>
<th>Name</th>
<th width="280px">Action</th>
</tr>
@if( isset($data) && !empty($data) )
@foreach ($data as $key => $d)
<tr>
<td>{{ ++$i }}</td>
<td>{{ $d->name }}</td>
<td>
<a class="btn btn-primary btn-sm" href="{{ route('sizes.edit',$d->id) }}" data-toggle="tooltip" data-placement="left" title="Edit"><i class="fas fa-edit"></i></a>
<a class="btn btn-danger btn-sm show-modal" href="#" data-toggle="tooltip" data-placement="top" title="Delete" value-id="{{$d->id}}" value-title="Delete" message= "Are you sure? You want to delete ?" method="Post" action="sizes" ><i class="fa fa-trash fa-lg" aria-hidden="true"></i></a>
@if($d->status == 1)
<a class="btn btn-danger btn-sm show-modal" href="#" data-toggle="tooltip" data-placement="top" title="Inactive" value-id="{{$d->id}}" value-title="Inactive" message= "Are you sure? You want to inactive ?" method="get" action="sizes-active-inactive" ><i class="fa fa-times" aria-hidden="true"></i></a>
@else
<a class="btn btn-success btn-sm show-modal" href="#" data-toggle="tooltip" data-placement="top" title="Active" value-id="{{$d->id}}" value-title="Active" message="Are you sure? You want to active ?" method="get" action="sizes-active-inactive"><i class="fa fa-check-circle" aria-hidden="true"></i></a>
@endif
</td>
</tr>
@endforeach
@endif
</table>
<br/>
{!! $data->render() !!}
</div>
</div>
</div>
</div>
<!--Row-->
@endsection