@php $currentPage = request()->input('page', 1); $pagingSize = config('settings.paging_size'); $i = 0; if($currentPage > 1) { $i = ($currentPage - 1) * $pagingSize; } @endphp @extends('layouts.master') @section('content')