@extends('themes.basic.businesses.layout') @section('title', d_trans('Rate :business_name', ['business_name' => ucFirst($business->trans->name)])) @section('description', $business->trans->short_description) @section('keywords', $business->trans->tags) @section('og_image', $business->getLogoLink()) @section('breadcrumbs_schema', Breadcrumbs::view('breadcrumbs::json-ld', 'businesses.show', $business)) @section('breadcrumbs', Breadcrumbs::render('businesses.review', $business)) @section('container', 'container-custom-xs') @section('content') @php $stars = old('stars') ?? request('stars'); $stars = $stars > 5 || $stars < 1 ? 0 : $stars; @endphp
@push('scripts_libs') @endpush @endsection