@extends('layouts.user') @php $seo = [ 'title' => 'GE-AS Blog — Online Arbitrage, AI Trading & Platform News', 'description' => 'Insights on online arbitrage, AI trading plans, copy trading via pilots, and how to grow your GE-AS account. Practical guides and platform updates.', 'robots' => 'index, follow', 'og_type' => 'website', 'og_image' => asset('images/blog-head.jpg'), 'json_ld' => [ '@context' => 'https://schema.org', '@type' => 'Blog', 'name' => 'GE-AS Blog', 'url' => 'https://ge-as.com/blog', 'description' => 'Online arbitrage, AI trading, and copy-trading insights from the GE-AS team.', 'publisher' => [ '@type' => 'Organization', 'name' => 'Global E-Commerce Arbitrage Store', 'logo' => [ '@type' => 'ImageObject', 'url' => asset('images/logo.png'), ], ], ], ]; @endphp @section('title') Blog @endsection @section('content')

Blogs / News

@forelse($blogs as $blog)
{{ $blog->created_at->format('jS F, Y'); }} {{ $blog->views }}
{{ $blog->title }}

{!! mb_strimwidth($blog->content, 0, 80, '...') !!}.

@empty

No Blog Posts At The Moment!.

@endforelse
@endsection