@extends('frontend.layouts.master') @section('content')

{{ $package->name }}

{{ $package->product->name }}

{{ $package->sale_price }} {{ Helper::currentCurrency()->code }} @if ($package->sale_price !== $package->purchase_price) {{ $package->purchase_price }} {{ Helper::currentCurrency()->code }} @endif

{{ $package->description }}

@csrf

{{ $package->package_details }}

    @foreach ($reviews as $key => $review)
  • {{ $review->user->first_name . ' ' . $review->user->last_name }}

    {{ $review->review }}

  • @endforeach

@if (auth('web')->check())

{{ __('routes.Add a review') }}

@csrf
@endif
@endsection