Current File : //home/tradevaly/demo.tradevaly.com.bd/resources/views/backend/buy-sells/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">Buy & Sell</h6>
<!-- <a href="{{route('countries.create')}}" class="btn btn-default-index btn-sm text-right "><i class="fas fa-plus-circle"></i> Add New Buy & Sell</a> -->
</div>
<div class="card-body">
<table class="table table-bordered">
<tr>
<th>No</th>
<th>Offer Type</th>
<th>Category</th>
<th>Product Name</th>
<th>Price</th>
<th width="280px">Action</th>
</tr>
@if( isset($data) && !empty($data) )
@foreach ($data as $key => $d)
<tr>
<td>{{ ++$i }}</td>
<td>{{ ($d->offer_type==0) ? 'Buy Offer' : 'Sell Offer' }}</td>
<td>{{ !empty($topCategory[$d->product_category_id]) ? $topCategory[$d->product_category_id] : '' }}</td>
<td>{{ $d->product_name }}</td>
<td>{{ !empty($d->price) ? $d->price : '' }}</td>
<td>
<a class="btn btn-primary btn-sm" href="{{ route('buying-sellings.show',$d->id) }}" data-toggle="tooltip" data-placement="left" title="View"><i class="fas fa-eye"></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="buying-sellings" ><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="buying-sellings-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="buying-sellings-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