{{-- Search filter --}}
@if (request()->get('par-page') !== 'all')
{{ __('SN') }} | {{ __('Property') }} | {{ __('Price') }} | {{ __('Type') }} | {{ __('Purpose') }} | {{ __('Views') }} | {{ __('Status') }} | {{ __('Actions') }} |
---|---|---|---|---|---|---|---|
{{ $loop->index + 1 }} | {{ $property->title }} | {{ currency($property->price) }} | {{ $property->propertyType->title }} | {{ $property->propertyPurpose->purpose }} | {{ $property->views }} | @if ($property->status == 1) @if ($property->expired_date >= date('Y-m-d')) {{ __('Active') }} @else {{ __('Expired') }} @endif @else {{ __('Inactive') }} @endif |
{{ $properties->onEachSide(0)->links() }}
@endif