@extends('layouts.instructor') @section('breadcrumb')

{{__('Manage Certificate')}}

@endsection @section('content')
{{ __('Certificate') }}
@if($courses->count() > 0)
@foreach($courses as $course) @endforeach
{{ __('Course Name') }} {{ __('Total Certificate') }} {{ __('Action') }}
img
{{ Str::limit($course->title, 30)}}
{{$course->certificate ? 1 : 0}} @if($course->certificate) @else @endif
@else
img
{{ __('Empty Certificate') }}
@endif
@endsection