@extends('layouts.main-app') @section('title', 'Blogs') @section('content') @include('layouts.navbar')

Power Up Your Knowledge

Charge Cycle Blog

Stay informed about the latest trends, tips, and news in the power bank industry.

@foreach ($blogs as $blog)

Blog | {{ $blog->created_at->format('d F Y') }}

{{ $blog->title }}

{{ $blog->user->name }}

Read More >

@endforeach
@if ($blogs->onFirstPage()) @else @endif
@if ($blogs->hasMorePages()) @else @endif
@include('layouts.station') @include('layouts.footer') @endsection