show.blade.php 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. @extends('layouts.admin.app')
  2. @section('content')
  3. <!-- Main content -->
  4. <section class="content">
  5. @include('layouts.errors-and-messages')
  6. <!-- Default box -->
  7. @if($product)
  8. <div class="box">
  9. <div class="box-body">
  10. <table class="table">
  11. <thead>
  12. <tr>
  13. <td class="col-md-2">Name</td>
  14. <td class="col-md-3">Description</td>
  15. <td class="col-md-3">Cover</td>
  16. <td class="col-md-2">Quantity</td>
  17. <td class="col-md-2">Price</td>
  18. </tr>
  19. </thead>
  20. <tbody>
  21. <tr>
  22. <td>{{ $product->name }}</td>
  23. <td>{{ $product->description }}</td>
  24. <td>
  25. @if(isset($product->cover))
  26. <img src="{{ asset("storage/$product->cover") }}" class="img-responsive" alt="">
  27. @endif
  28. </td>
  29. <td>{{ $product->quantity }}</td>
  30. <td>{{ config('cart.currency') }} {{ $product->price }}</td>
  31. </tr>
  32. </tbody>
  33. </table>
  34. </div>
  35. <!-- /.box-body -->
  36. <div class="box-footer">
  37. <div class="btn-group">
  38. <a href="{{ route('admin.products.index') }}" class="btn btn-default btn-sm">Back</a>
  39. </div>
  40. </div>
  41. </div>
  42. <!-- /.box -->
  43. @endif
  44. </section>
  45. <!-- /.content -->
  46. @endsection