@extends('layout.default', [ 'appClass' => 'app-content-full-height', 'appContentClass' => 'p-3' ]) @section('title', 'Inbox') @section('content') @php // من الكنترولر: // 'items' => array of ['uid','subject','from','date','seen','has_attachments'] // 'pagination' => ['page','limit','total','pages'] // 'folder' => current folder name/path $page = $pagination['page'] ?? 1; $limit = $pagination['limit'] ?? 25; $total = $pagination['total'] ?? 0; $pages = $pagination['pages'] ?? 1; $folder = $folder ?? 'INBOX'; $prev = max(1, $page - 1); $next = min($pages, $page + 1); // دالة مساعدة بسيطة لبناء رابط مع بارامترز function inboxUrl($page, $limit, $folder) { $q = ['page' => $page, 'limit' => $limit]; if (!empty($folder)) $q['folder'] = $folder; return route('email.inbox', $q); } @endphp