@extends('layouts.userLayouts') @section('main')

لیست علاقمندی ها

@if(count($favorites) == 0 )

موردی برای نمایش وجود ندارد!

@else
@foreach($favorites as $favorite)

{{ \Illuminate\Support\Str::limit($favorite->fa_name,40)}}

@if(count($favorite->price->where('number','>',0)) != 0)
{{number_format(\App\Post::minPrice($favorite->id)['total'])}} تومان
@else
ناموجود
@endif
@endforeach
@endif
@include('layouts.loading') @endsection @section('footer') @parent @stop