@extends('front.layouts.app') @push('user.css') @endpush @section('content')
@forelse($datas as $data)
عرض السفر
{{ $data->country->title }}

{{ $data->name }}

{{--

{{ Str::limit(strip_tags(html_entity_decode($data->description)), 100, ' ...') }}

--}}
{{ number_format((float) $data->discount, 2) }} ريال
{{ number_format((float) $data->price, 2) }} ريال
@empty @endforelse
@endsection