@extends('admin.layout.master') @section('title', __('admin.rental_company_details')) @section('content')
{{ $rentalCompany->getTranslation('name', app()->getLocale()) }}
{{ __('admin.' . $rentalCompany->status) }}
{{ $rentalCompany->phone ?? __('admin.not_available') }}
{{ $rentalCompany->email ?? __('admin.not_available') }}
{{ $rentalCompany->address ?? __('admin.not_available') }}
{{ $rentalCompany->latitude }}
{{ $rentalCompany->longitude }}
{{ $rentalCompany->getTranslation('description', app()->getLocale()) ?? __('admin.no_description') }}
{{ $rentalCompany->cars_count ?? 0 }}
{{ $rentalCompany->orders_count ?? 0 }}
@if($rentalCompany->ratings && $rentalCompany->ratings->count() > 0)
{{ $rentalCompany->created_at?->format('Y-m-d H:i:s') }}
{{ $rentalCompany->updated_at?->format('Y-m-d H:i:s') }}
| {{ __('admin.name') }} | {{ __('admin.period_type') }} | {{ __('admin.price') }} | {{ __('admin.discount') }} | {{ __('admin.status') }} |
|---|---|---|---|---|
| {{ $service->getTranslation('name', app()->getLocale()) }} | {{ $service->pivot->period_type }} | {{ $service->pivot->price }} | {{ $service->pivot->discount ?? 0 }}% | {{ __('admin.' . $service->pivot->status) }} |
| {{ __('admin.name') }} | {{ __('admin.fee') }} | {{ __('admin.status') }} |
|---|---|---|
| {{ $method->getTranslation('name', app()->getLocale()) }} | {{ $method->pivot->fee ?? 0 }} | {{ __('admin.' . $method->pivot->status) }} |