@extends('layouts.app') @section('title') {{ __('home.wishlist') }} @endsection @section('content')
@if ($user->image) {{ $user->name() }} @else avatar @endif

{{ $user->name() }}

{{ $user->email }}
@include('userboard.partials.sideUserDashboard')
@lang('home.wishlist')
@forelse ($wishlist as $my_course)
{{ $my_course->course->{'name_' . $lang} }}
{{ $my_course->course->category->{'name_' . $lang} }}
{{ $my_course->course->course->countLessons() }} @lang('home.lessons')
{{ $my_course->course->{'name_' . $lang} }}

@foreach ($my_course->course->teachers() as $teacher) {{ $teacher->name }} @if (!$loop->last) / @endif @endforeach

@if ($my_course->course->rate != 0) {{ $my_course->course->rate }} @endif
    @for ($i = 1; $i <= $rate; $i++)
  • @endfor @for ($i = 1; $i <= 5 - $rate; $i++)
  • @endfor
{{ $my_course->course->last_price() == 0 ? __('home.free') : $my_course->course->last_price() . ' ' . __('home.SAR') }}
@empty
@lang('home.empty_wishlist')
@endforelse
@endsection @section('script') @endsection