@extends('backendPartials.default')
@section('section')
Services
| # |
Image |
Title |
Price |
Sale Price |
Show Price |
Active? |
Visitors |
Actions |
@foreach ($products as $c)
| {{ $loop->iteration }} |
 }}) |
{{ $c->title }} |
{{ $c->price }} |
{{ $c->sale_price }} |
{{ $c->show_price ? 'Yes' : 'No' }} |
{{ $c->is_active ? 'Yes' : 'No' }} |
{{ $c->visitor_count }} |
Edit
Delete
|
@endforeach
@endsection