43 lines
995 B
PHP
43 lines
995 B
PHP
<!-- Id Field -->
|
|
<div class="form-group">
|
|
{!! Form::label('id', 'Id:') !!}
|
|
<p>{{ $course->id }}</p>
|
|
</div>
|
|
|
|
<!-- Course Name Field -->
|
|
<div class="form-group">
|
|
{!! Form::label('course_name', 'Course Name:') !!}
|
|
<p>{{ $course->course_name }}</p>
|
|
</div>
|
|
|
|
<!-- Description Field -->
|
|
<div class="form-group">
|
|
{!! Form::label('description', 'Description:') !!}
|
|
<p>{{ $course->description }}</p>
|
|
</div>
|
|
|
|
<!-- Image Field -->
|
|
<div class="form-group">
|
|
{!! Form::label('image', 'Image:') !!}
|
|
<p>{{ $course->image }}</p>
|
|
</div>
|
|
|
|
<!-- Published Field -->
|
|
<div class="form-group">
|
|
{!! Form::label('published', 'Published:') !!}
|
|
<p>{{ $course->published }}</p>
|
|
</div>
|
|
|
|
<!-- Created At Field -->
|
|
<div class="form-group">
|
|
{!! Form::label('created_at', 'Created At:') !!}
|
|
<p>{{ $course->created_at }}</p>
|
|
</div>
|
|
|
|
<!-- Updated At Field -->
|
|
<div class="form-group">
|
|
{!! Form::label('updated_at', 'Updated At:') !!}
|
|
<p>{{ $course->updated_at }}</p>
|
|
</div>
|
|
|