@extends('layouts.default') @push('title', get_phrase('Instructor details')) @push('meta')@endpush @push('css')@endpush @section('content')

{{ get_phrase('Hi, I’m') }} {{ $instructor_details->name }}

{{ $instructor_details->skill }}

{{ $instructor_details->boigraphy }}

  • {{ get_phrase('Experience') }}

    : {{ instructor_experience($instructor_details->id) }}
  • @if ($instructor_details->email)
  • {{ get_phrase('Email') }}

    : {{ $instructor_details->email }}
  • @endif @if ($instructor_details->phone)
  • {{ get_phrase('Phone') }}

    : {{ $instructor_details->phone }}
  • @endif @if ($instructor_details->details)
  • {{ get_phrase('Location') }}

    : {{ $instructor_details->details }}
  • @endif
... ...
@if (count($instructor_courses) > 0)

{{ get_phrase('My Courses') }}

@foreach ($instructor_courses as $course) @include('frontend.default.course.course_grid', ['course' => $course]) @endforeach
@endif @endsection