diff --git a/public/assets/css/front/listing.css b/public/assets/css/front/listing.css index a84f1e7..8034739 100644 --- a/public/assets/css/front/listing.css +++ b/public/assets/css/front/listing.css @@ -37,7 +37,7 @@ section[role="listings"] div[role="paginate"] span { a.list-link { display: grid; - grid-template-columns: 40px 450px 230px; + grid-template-columns: 30px 50px 300px; width: 80%; height: 45px; } diff --git a/public/assets/css/front/location.css b/public/assets/css/front/location.css index a28c2fe..4ce4bf3 100644 --- a/public/assets/css/front/location.css +++ b/public/assets/css/front/location.css @@ -13,3 +13,9 @@ section[role="location"] img { overflow: hidden; vertical-align: top; } + +.rating-icon { + width: 45px; + top: 10px; + position: relative; +} diff --git a/public/assets/images/global/status-silence.svg b/public/assets/images/global/status-silence.svg new file mode 100644 index 0000000..13fdd48 --- /dev/null +++ b/public/assets/images/global/status-silence.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/public/assets/images/global/status-suspend.svg b/public/assets/images/global/status-suspend.svg new file mode 100644 index 0000000..49a4cf3 --- /dev/null +++ b/public/assets/images/global/status-suspend.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/resources/views/front/index.blade.php b/resources/views/front/index.blade.php index 57d1694..34f4221 100644 --- a/resources/views/front/index.blade.php +++ b/resources/views/front/index.blade.php @@ -31,13 +31,14 @@

Recent Updates

@foreach($recent as $location) - @if($location->status == 'silence') - + @if($location->rating == 'silence') + + @else - + {{$location->block_count}} + @endif - NOTED COUNT: {{$location->block_count}} @endforeach diff --git a/resources/views/front/listing.blade.php b/resources/views/front/listing.blade.php index c893e88..b2bd8de 100644 --- a/resources/views/front/listing.blade.php +++ b/resources/views/front/listing.blade.php @@ -11,12 +11,13 @@ @foreach($locations as $location) @if($location->rating == 'silence') - + {{$location->block_count}} + @else - + {{$location->block_count}} + @endif - NOTED COUNT: {{$location->block_count}} @endforeach PREV diff --git a/resources/views/front/location.blade.php b/resources/views/front/location.blade.php index 2f76b69..ef2519d 100644 --- a/resources/views/front/location.blade.php +++ b/resources/views/front/location.blade.php @@ -17,8 +17,16 @@ @endforeach @endif
- Noted Count: {{$location->block_count}}
- Noted Count reflects the number of times this instance has been suspended or silenced by a member of Trusted Sources + @if($location->rating == 'silence') + + Silenced Count: {{$location->block_count}} + @else + + Suspended Count: {{$location->block_count}} + + @endif +
+ This count reflects the number of times this instance has been suspended or silenced by a member of Trusted Sources
UPDATED : {{$updated}}