@if(Session::has('success'))
{{ Session::get('success') }}
@endif
| ID |
Category |
Brand |
Model |
Features |
Specifications |
Image |
Action |
{{--Low | --}}
{{--Volume | --}}
@foreach($products as $product)
| {{ $loop->iteration }} |
{{ $product->product }} |
{{ $product->brand }} |
{{ $product->model }} |
{!! substr($product->features,0,1000) !!} |
{!! substr($product->specifications,0,1000) !!} |
|
{!! Form::open(['action'=>['ProductController@destroy',$product->id],'method'=>'delete','onsubmit'=>'return confirmDelete()']) !!}
{!! Form::submit('X',['class'=>'btn btn-danger']) !!}
{!! Form::close() !!}
|
{{--$1.38 | --}}
{{--9,395 | --}}
@endforeach
@stop
@section('script')
@stop