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