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

@yield('title')

@endsection @section('content')
@if (has_permissions('create', 'property'))
{!! Form::open(['route' => 'property.create']) !!} {{ method_field('get') }} {{ Form::submit(__('Add Property'), ['class' => 'btn btn-primary']) }} {!! Form::close() !!}
@endif
{{-- {{ Form::label('category', 'Category', ['class' => 'form-label col-12 text-center']) }} --}}
{{-- {{ Form::label('status', 'Status', ['class' => 'form-label col-12 text-center']) }} --}}
{!! Form::open(['route' => 'property.priority']) !!} {{ method_field('get') }} {{ Form::submit(__('Clear priority'), ['class' => 'btn btn-primary']) }} {!! Form::close() !!}
@if (has_permissions('update', 'property')) @endif
{{ __('ID') }} {{ __('Client Name') }} {{ __('Mobile') }} {{ __('Client Address') }} Title {{ __('Address') }} {{ __('Category') }} {{ __('Type') }} {{ __('Status') }} {{ __('Image') }} {{ __('3D Image') }} {{ __('Total Interested Users') }} {{ __('Total Clicks') }} {{ __('Priority') }} {{ __('Enable/Disable') }} {{ __('Action') }}
@endsection @section('script') @endsection