TOTAL PROPERTY
@extends('backend.layouts.app') @section('title', 'Dashboard') @push('styles') @endpush @section('content')
SL. | Title | Price | City | star | Manager |
---|---|---|---|---|---|
{{ ++$key }}. | {{ str_limit($property->title, 10) }} | ${{ $property->price }} | {{ $property->city }} | @if($property->featured == 1) F @endif | {{ strtok($property->user->name, " ")}} |
SL. | Title | comment | Author |
---|---|---|---|
{{ ++$key }}. | {{ str_limit($post->title, 30) }} | {{ $post->comments_count }} | {{ strtok($post->user->name, " ")}} |
SL. | Name | Role | |
---|---|---|---|
{{ ++$key }}. | {{ $user->name }} | {{ $user->email }} | {{ $user->role->name }} |
SL. | Comment | check | Author | Time |
---|---|---|---|---|
{{ ++$key }}. | {{ str_limit($comment->body, 10) }} | @if($comment->approved == 1) A @else N @endif | {{ strtok($comment->users->name, " ")}} | {{ $comment->created_at->diffForHumans() }} |