@extends('layouts.admin') @section('content')
| {{ trans('cruds.unit.fields.id') }} | {{ $unit->id }} |
|---|---|
| {{ trans('cruds.unit.fields.name') }} | {{ $unit->name }} |
| {{ trans('cruds.unit.fields.property') }} | {{ $unit->property->name ?? '' }} |
| {{ trans('cruds.unit.fields.rent') }} | {{ $unit->rent }} |
| {{ trans('cruds.unit.fields.property_unit') }} | @foreach($unit->property_units as $key => $property_unit) {{ $property_unit->name }} @endforeach |
| {{ trans('cruds.unit.fields.status') }} | {{ App\Models\Unit::STATUS_SELECT[$unit->status] ?? '' }} |