@extends('tenant.layouts.master') @section('breadcrumb') @include('tenant.layouts.breadcrumb', ['items' => [ __('breadcrumb.rentals') => '/rentals', __('breadcrumb.booths_kiosks') => route('tenant.rentals.booths.index'), __('breadcrumb.view_booth') => '#' ]]) @endsection @section('sidebar') @include('tenant.layouts.sidebar', ['activeItem' => 'rentals.booths']) @endsection @section('style') @endsection @section('content')

@lang('rentals/booths/show.booth') ({{ $booth->id }} - {{ $booth->title }})

@lang('rentals/booths/show.booth_information')

@lang('rentals/booths/show.booth_name') : {{ $booth->title }}
@lang('rentals/booths/show.booth_area') : {{ $booth->area }}
@lang('rentals/booths/show.booth_price') : {{ $booth->price }}
@lang('rentals/booths/show.leased'): {{ $booth->is_rented == 1 ? 'نعم' : 'لا' }}
@lang('rentals/booths/show.booth_status') : {{ $booth->is_active == '1' ? 'فعال' : ' ليس فعال'}}
@lang('rentals/booths/show.tenant_company') : {{ $contractName != null ? $contractName->company_name : 'لا يوجد'}}
@lang('rentals/booths/show.floor') : {{ $booth->floor->title }}
@lang('rentals/booths/show.building') : {{ $booth->floor->building->title }}
@endsection