@extends("admin.admin_app") @section("content")
{{ html()->form('GET', url('/admin/property')) ->attributes(['class' => 'app-search', 'id' => 'search'])->open() }} {{ html()->form()->close() }}
  

@foreach($list as $i => $data)

{{ $data->types->type_name }}

@if(isset($data->image)) @endif
By {{ $data->users->name }}

{{ Str::limit(stripslashes($data->title),40) }}

status==1) {{ 'checked' }} @endif/>
@endforeach
@include("admin.copyright")
@endsection