@extends('backend.layouts.app')
@section('title', localize('dashboard'))
@push('css')
@endpush
@section('content')
@include('backend.layouts.common.message')
| {{localize('image')}} |
{{localize('title')}} |
{{localize('category')}} |
{{localize('reporter')}} |
{{localize('read_hit')}} |
@foreach($latest_posts as $latest)
@php
$imageurl = '';
$imageurl = (storage_asset_image($latest->thumb_image) ?? null); // Default image URL if image_base_url is empty
@endphp
@php
if($latest->thumb_image != null){
@endphp
@php
}else{
@endphp
N/A
@php
}
@endphp
|
{{ $latest->title }} |
{{ $latest->category_name }} |
{{ $latest->name }} |
{{ $latest->reader_hit }} |
@endforeach
| {{localize('image')}} |
{{localize('title')}} |
{{localize('category')}} |
{{localize('reporter')}} |
{{localize('read_hit')}} |
@foreach($populer_posts as $populer)
@php
$imageurl = '';
$imageurl = (storage_asset_image($populer->thumb_image) ?? null); // Default image URL if image_base_url is empty
@endphp
@php
if($populer->thumb_image != null){
@endphp
@php
}else{
@endphp
N/A
@php
}
@endphp
|
{{ $populer->title }} |
{{ $populer->category_name }} |
{{ $populer->name }} |
{{ $populer->reader_hit }} |
@endforeach
@endsection
@push('js')
@endpush