@extends('layouts.user') @section('title') {{ __('contents.newOtherRental') }} @endsection @section('style') @endsection @section('content') @php $village = ""; if(!empty($rental->village)){ $village = \App\Models\Village::where('code',$rental->village)->first(); } $commune = \App\Models\Commune::where('code',$rental->commune)->first(); $district = \App\Models\District::where('code',$rental->district)->first(); $province = \App\Models\Province::where('code',$rental->province)->first(); $prop_info = json_decode($rental->Info); $prop_others = json_decode($rental->others); @endphp