@extends('layouts.app')
@section('content')
$ {{$user->balance}}
Account Balance
$ 0.00
Affiliate Earn (Coming Soon)
{{$visitor}}
Total Posts Visitors
@if($posts->count() >0)
ID |
Title |
Status |
Popularity |
@php $id=0;@endphp
@foreach($posts as $post)
@php $id++;@endphp
{{$id}} |
{{str_limit($post->title,30)}} |
@if($post->status == 1)
Published
@else
Un-Published
@endif
|
{{$post->counter}}
|
@endforeach
@else
You didn't Created Ads Post Yet
@endif
@endsection