@extends('layouts.app') @section('title') {{__('home.wishlist') }} @endsection @section('content')
@if(count($wishlist) > 0) @foreach ($wishlist as $course) @endforeach
  @lang('home.training') @lang('home.price')
{{ $course->course->{'name_' . $lang} }} {{ $course->course->{'name_' . $lang} }} @lang('home.SAR'){{ $course->course->last_price() }}
@else

{{ trans('home.no_data_found') }}

@endif
@endsection @section('script') @endsection