@extends('layouts.app') @section('title', 'Actualités & insights') @section('meta_description', 'Analyses et retours d’expérience sur l’e-commerce, le SaaS, l’ERP et l’IA appliquée.') @isset($query) @section('robots', 'noindex, nofollow') @endisset @php // Pagination SEO: noindex,follow for pages > 1 $currentPage = isset($pagination['current_page']) ? (int) $pagination['current_page'] : (int) request()->get('page', 1); if ($currentPage > 1) { $__env->startSection('robots', 'noindex, follow'); $__env->stopSection(); } @endphp @section('head') @isset($pagination) @php $current = $pagination['current_page'] ?? 1; $last = $pagination['last_page'] ?? 1; $base = url()->current(); $prevNum = $current - 1; $nextNum = $current + 1; $prevUrl = $prevNum > 1 ? $base.'?page='.$prevNum : $base; $nextUrl = $base.'?page='.$nextNum; @endphp @if(($current ?? 1) > 1) @endif @if(($current ?? 1) < ($last ?? 1)) @endif @endisset @endsection @section('content')

Actualités & insights

Analyses courtes, études de cas et retours d’expérience — l’IA appliquée au service du business, sans buzzwords.

@foreach ($posts as $post)
@include('posts.card', ['post'=> $post])
@endforeach
@include('layouts.pagination', ['pagination' => $pagination ])
@endsection