@extends('layouts.admin') @section('title') Property Types @endsection @section('style') @endsection @section('content')

Add Property Type


@csrf


@if(count($property_types) > 0) @foreach($property_types as $t) @endforeach @else @endif
# Title (EN) Title (KM) Icon Status Actions
{{ $i++ }} {{ $t->title_en }} {{ $t->title_km }} @if($t->status == 'active')
Active
@elseif($t->status == 'inactive')
Inactive
@endif
No Property Type found
@endsection @section('script') @endsection