@extends('backend.layouts.main') @section('title', 'Properties') @section('main-container')
@if(session()->has('success'))
{{ session('success') }}
@endif @if(session()->has('error'))
{{ session('error') }}
@endif
Properties
Create New
@foreach ($properties as $key=> $value) @endforeach
Title Created By Location Coordinates Price Per Night Status Created At Action
{{$value->title}} {{$value->user->name}} {{$value->location}} {{$value->cordinates}} {{$value->price_per_night}} {{$value->status}} {{date('M,d-Y h:i a',strtotime($value->created_at) )}}
@endsection