@extends('layouts.main') @section('title') {{ __('Property') }} @endsection @section('page-title')

@yield('title')

@endsection @section('content')
@if (has_permissions('create', 'property'))
{{-- Add Property Button --}}
{!! Form::open(['route' => 'property.create']) !!} {{ method_field('get') }} {{ Form::submit(__('Add Property'), ['class' => 'btn btn-primary']) }} {!! Form::close() !!}
@endif
{{-- Filter Category --}}
{{-- Filter Status --}}
{{-- Filter Type --}}
{{-- Filter Owner --}}
{{-- Filter Private/General --}}
@if (has_permissions('update', 'property')) @endif
{{ __('ID') }} {{ __('Client Name') }} {{ __('Mobile') }} {{ __('Client Address') }} {{ __('Title') }} {{ __('Slug') }} {{ __('Address') }} {{ __('Category') }} {{ __('Type') }} {{ __('Enable/Disable') }} {{ __('Status') }} {{ __('Image') }} {{ __('3D Image') }} {{ __('Total Interested Users') }} {{ __('Is Property Active ?') }} {{ __('Status') }} {{ __('Private/Public') }} {{ __('Gallery Images') }} {{ __('Documents') }} {{ __('Video Link') }} {{ __('Action') }}
{{-- Interested Users Modal --}} {{-- End Interested Users Modal --}} {{-- Gallery Images Modal --}} {{-- End Gallery Images Modal --}} {{-- Gallery Images Modal --}} {{-- Change Request Status Modal --}} {{-- End Change Request Status --}}
@endsection @section('script') @endsection