Browse AI Field GuideForum Podcast
All ThreadsLeaderboard
  1. Discussions

    1. Popular This Week
    2. Popular All Time
    3. Solved
    4. Unsolved
    5. No Replies Yet

hasen39's avatar

Telegram Bot pagination

How can I make pagination in irazasyed package using inline keyboard ?

hasen39's avatar
hasen39's avatar hasen396yrs agoGeneral
2
1
Alodon's avatar

Pagination error

I am getting this error(Call to undefined method App\Post::sortByDesc()).I am trying to sort items and then wanna use pagination. My code public function tutorials(Request $request) { $posts = Post::sortByDesc('visit_count')->paginate(5); $user = User::whereAdmin(1)->first(); return view('blog',compact('posts','user')); }

Alodon's avatar
Alodon's avatar MichalOrav...6yrs agoLaravel
5
1
Last reply by MichalOravec 6yrs ago
Coolone3000's avatar

Pagination data missing from api resource.

Laravel Version: 7.8.1 PHP Version: 7.4.2 Database Driver & Version: MySql & 5.7 Description: When sending an eloquent query to an api resource with pagination the pagination data is missing from the result. Laravel 6.x { "current_page": 1, "data": [ { "id": 10000196, "name": "John Doe", } ],

Coolone3000's avatar
Coolone3000's avatar renatokira4yrs agoLaravel
5
1
Last reply by renatokira 4yrs ago
lquintana's avatar

Append values to pagination

I've being following Laracast for so long time and I am finally posting my first question. I am working on a very dirty project, pretty much a mess and I am very limited with the changes that I can do. I need to query students with exams and school and return the results in a pagination. It's pretty much simple up to here, but my problem is that each of the students have a fiel

lquintana's avatar
lquintana's avatar lquintana6yrs agoEloquent
6
9
Last reply by lquintana 6yrs ago
mvnobrega's avatar

Link on another page to last pagination URL [ SOLVED ]

I am working on a project similar to a discussion forum. I need to create a link that takes the user to the last URL paginate. My group controller : public function gruposIndex (Request $ request) {      $ groups = Group :: paginate (9);          return view ('dreams', compact ('groups'));      } My groups view: @foreach($grupos as $g)

mvnobrega's avatar
mvnobrega's avatar mvnobrega6yrs agoGeneral
3
1
Last reply by mvnobrega 6yrs ago
jrdavidson's avatar

Custom Pagination Page Number Display

I'm trying to develop custom pagination for tables that will be put together using Livewire and there is a specific way the customer wants the pagination displayed. Some of the below code is wrong due to having a problem wrapping my head around so many situations to think of. However, I would happily take suggestions on what it is I need to add, remove, refactor. Let's say ther

jrdavidson's avatar
jrdavidson's avatar jlrdw6yrs agoLaravel
3
1
Last reply by jlrdw 6yrs ago
UsmanBasharmal's avatar

Jquery Datatables in laravel vuejs with add, update,delete and server side pagination

After a few weeks, I found how to implement Jquery data table in laravel Vuejs with add, update, delete and server-side Pagination, sorting, filtering, and search functionalities. This is only for helping purpose I share this information may be a lot of developers will be looking for it and I hope nobody gives me (minus points) Route Route::post('getAllExpense', 'API\ExpensesC

UsmanBasharmal's avatar
UsmanBasharmal's avatar UsmanBasha...6yrs agoVue
0
1
JJK's avatar

A custom query builder to support with, filters, sorting and pagination

Hello, I'm currently working on a project that has somewhat complicated filters, sorting and relations on every view. The views cover: sorting by one or multiple columns basic pagination filtering with flags: contains (for text contained within text like 'na' in 'Banana') range (for numerics, like 5 being between 1 and 10) ignore case (for text, to ignore case). Originally

JJK's avatar
JJK's avatar Azizbek Gu...1yr agoLaravel
6
2
Last reply by Azizbek Gulaliev 1yr ago
princeallan5's avatar

Laravel-Vue data pagination and filtering through all records

Hi, I created a laravel-vue app. I paginated results displaying 50 records at a time. That was all easy. Now, I have over a thousand records, and I need to be able to filter through all records over 1000. I can only filter the results I already returned on single page using Data binding. Can anyone help me with a simple solution on how to update result while filtering (filterin

princeallan5's avatar
princeallan5's avatar flightsimm...6yrs agoLaravel
1
1
Last reply by flightsimmer668 6yrs ago
mustafaabdujalil's avatar

Custom Pagination

when i try to create pagination for array of items in the first page it will return well but if i try to get page = 2 or 3 or .... return data of objects like this example "current_page": 2, "data": { "10": { "rate_plane_code": "JOY5zVsquIXP651ubmI2ZRCHn+60VkMy6sCEnIonI69vEH

mustafaabdujalil's avatar
mustafaabdujalil's avatar mustafaabd...6yrs agoLaravel
1
1
Last reply by mustafaabdujalil 6yrs ago
UsmanBasharmal's avatar

After removing pagination could not get the data via api Laravel/Vuejs

I have applied serverside pagination but it didn't work with Datatables so I removed it but now I could not get the data from my BookController via API if I put the pagination back it works I don't know what is wrong. here is my Bookcontroller public function index() { try { // $Book = Book::orderBy('name', 'ASC')->paginate(10); $Book = Bo

UsmanBasharmal's avatar
UsmanBasharmal's avatar MichalOrav...5yrs agoLaravel
8
1
Last reply by MichalOravec 5yrs ago
UsmanBasharmal's avatar

Datatables in laravel vuejs with add, update,delete and server side pagination

I am developing a Bookstore application in laravel vuejs I have tried to implement jquery datatables but the serverside pagination did not work, sometimes the search box disappeared, sometimes it shows no data in the table. I have tried the below Datatables too it gives me different errors so if there is any specific data table that I can use I am tired and confused about which

UsmanBasharmal's avatar
UsmanBasharmal's avatar UsmanBasha...6yrs agoVue
0
1
FloatingHero105's avatar

Laravel pagination links

Hello. Is it possible set an id to a laravel pagination link? I'm making an ajax pagination system with two bootstrap tables and I need a way to add ajax to the two tables. Thanks

FloatingHero105's avatar
FloatingHero105's avatar FloatingHe...6yrs agoLaravel
2
1
Last reply by FloatingHero105 6yrs ago
mbo's avatar

Database: Pagination - Links() not working

good day, I'm setting up a complex query. Depending on different variables. Coming from a form. Loading of the page works fine. Also the setting of pagination -> links(). $request = Request {#43 ▼ #json: null #convertedFiles: [] #userResolver: Closure {#446 ▶} #routeResolver: Closure {#440 ▶} +attributes: ParameterBag {#45 ▶} +request: ParameterBag {#44 ▼ #pa

mbo's avatar
mbo's avatar mbo6yrs agoLaravel
4
1
Last reply by mbo 6yrs ago
monstajamss's avatar

Laravel Custom Pagination (Html & CSS)

I have my html pagination like this with my css <div class="pagination"> <a href="#" class="next"> Next <i class="fa fa-angle-right"></i> </a> </div> How can i make laravel paginate using above struction with Next and Previous

monstajamss's avatar
monstajamss's avatar jlrdw6yrs agoLaravel
12
1
Last reply by jlrdw 6yrs ago
adeguntoro's avatar

How to redirect user with pagination button from index to another blade file

my default view is index.blade.php, how can i redirect user from index.blade.php to next-pagination.blade.php when user click "next" or "back" button ? this is current code. The reason i want to change to next-pagination.blade.php because index and next-pagination have different layout design. i try to use withpath, but i confuse how to use it properly, lik

adeguntoro's avatar
adeguntoro's avatar jlrdw6yrs agoLaravel
1
1
Last reply by jlrdw 6yrs ago
alauddinjahin's avatar

Need Help for Ajax pagination with Laravel 6

Dear friends, I have got a problem for making pagination in laravel 6 .My problem is that when I am trying to make pagination for my e-commerce project on shop page . I can't fetch my category and sub category id on url for making query as well what I need.Tell me how can I fetch my category and sub category id on url with ajax. Thanks ...............

alauddinjahin's avatar
alauddinjahin's avatar jlrdw6yrs agoLaravel
3
1
Last reply by jlrdw 6yrs ago
nafeeur10's avatar

DataTable is not working to change Pagination Text

I want to change Pagination Text Previous to Prev How is this possible? <table class=" table table-bordered table-striped table-hover datatable datatable-Permission"> -------- </table> jQuery Code: $('.datatable-Permission:not(.ajaxTable)').DataTable({ buttons: dtButtons, language: { paginate: { previous: 'Prev',

nafeeur10's avatar
nafeeur10's avatar sophiajack6yrs agoJavaScript
5
1
Last reply by sophiajack 6yrs ago
Seeker1337's avatar

Laravel 6+ Pagination on page and CRUD problems

Hello there. Basically I have a project related to vehicles and the structure is like this: I have a CRUD system in a Management page where I add vehicles using a form and they get displayed in another page in my website. However, I've came to an issue and I'd need your help: In my CRUD system I need to make a pagination for up to 15 vehicles per a page ( lets say I have 90 ve

Seeker1337's avatar
Seeker1337's avatar Seeker13376yrs agoLaravel
9
1
Last reply by Seeker1337 6yrs ago
nipun's avatar

sorting items via ajax pagination links working without its html format

When user click View All Items button it will navigate to a page with all items with pagination. Then after loading page if user click view items per drop-down and change its value items should with requested amount and also pagination links get to be changed.(If user click 20 items per page it will load 20 items with pagination links) This is initial load ItemController public

nipun's avatar
nipun's avatar nipun6yrs agoLaravel
0
1
princeoo7's avatar

Customize Index for records with pagination in foreach loop.

I need to have an indexing / sr.no on the record been displayed in foreach loop. 21 | xyz | ok | success 22 | abc | ok | success 23 | axyz | ok| error 24 | xabc | ok | success Now, normally I would use the id. but in this case, I don't want to show id's. If i use the $key from foreach loop, for the first page it works well. but whe

princeoo7's avatar
princeoo7's avatar princeoo76yrs agoLaravel
3
1
Last reply by princeoo7 6yrs ago
opv's avatar

Laravel multiple pagination

In basic pagination we get some next url for loading more data, but if those data have more data with pagination as well, how can I customize and use different parameters for different data: ?page=2 to ?posts=2&comments=1 And then use one for one, other for other.. I am using api resource with main UserResource which returns posts with PostsResource which uses pagination a

opv's avatar
opv's avatar opv6yrs agoLaravel
4
1
Last reply by opv 6yrs ago
martinszeltins's avatar

Column not found in 'group statement' when using pagination

It looks like when Laravel generates the necessary data for pagination, it overrides the SELECT part of my statement. That means I lose all my selects and aliases and it can't find it in the group clause anymore... :( What can I do? $orders = Orders::selectRaw(' date(created_at) as date_of_month, weekday(created_at) + 1 as day_of_week, sum(order_sum) as order_sum ')

martinszeltins's avatar
martinszeltins's avatar skauk6yrs agoEloquent
1
6
Last reply by skauk 6yrs ago
Daniel_D's avatar

Pagination not working

Hi guys I'm using laravel 6.x. When retrieving a resultset fro the database and usin a simple pagination on it I have some issues. First I was trying to use a post, since the conditions for the query come from a form (it's a users search), but I got an error, I've read online that you can use pagination only with get methods,do I changed my route to a getmethod. Now I'm getting

Daniel_D's avatar
Daniel_D's avatar Daniel_D6yrs agoLaravel
9
1
Last reply by Daniel_D 6yrs ago
gowthamdeena's avatar

Laravel Pagination page id encription

I am using Laravel pagination total of 200 records is there and i am pagination 10 records per page. first time I load the page show the URL is as I am given https://www.example.com/photogallery Then I click the next page the URL shows https://www.example.com/photogallery?page=1 then go to next page https://www.example.com/photogallery?page=2 I am facing the issue the page is 1

gowthamdeena's avatar
gowthamdeena's avatar gowthamdee...6yrs agoGeneral
2
1
Last reply by gowthamdeena 6yrs ago
JohnnyBigodes's avatar

[Livewire] Search doesnt work after pagination

Hello everyone, I have a search in Livewire that it doesnt work unless the pagination in on page 1. Here is my class: <?php namespace App\Http\Livewire\Tags; use App\Tag; use Exception; use Illuminate\Contracts\View\Factory; use Illuminate\View\View; use Livewire\Component; use Livewire\WithPagination; class TagEdit extends Component { use WithPagination; public

JohnnyBigodes's avatar
JohnnyBigodes's avatar JohnnyBigo...6yrs agoLivewire
8
1
Last reply by JohnnyBigodes 6yrs ago
VertexBuffer's avatar

How to modify Eloquent pagination data and retain pagination information?

So I'm aware you can do something like; $model = Model::latest()->paginate(10); $model->getCollection() ->transform(function ($model) { return [ 'id' => $model->id, 'title' => $model->title, 'created_at' => $model->created_at ];

VertexBuffer's avatar
VertexBuffer's avatar bobbybouwm...6yrs agoCode Review
5
5
Last reply by bobbybouwmann 6yrs ago
mikecou's avatar

Searching with dynamic parameters and pagination: example needed

I can’t find a good example on how to implement a search for my site. I want to have a series of search boxes on the side of my index page and, when a user selects options and hits the search button, the page is refreshed with the new changes. I currently have pagination as well and I would like to keep that if possible. Think of the search Newegg has on the side when using the

mikecou's avatar
mikecou's avatar mikecou6yrs agoLaravel
4
1
Last reply by mikecou 6yrs ago
Farhandev's avatar

Laravel pagination not working

hello class Nested extends Model{ public function nestedfunc() { return $this->hasMany(Nested::class, 'parent_id'); } public function childnestedfunc() { return $this->hasMany(Nested::class, 'parent_id')->with('nestedfunc'); } } //this is my model function for reccursion. how to add pagination to the root of the nested comments. i am storing all comments to

Farhandev's avatar
Farhandev's avatar tisuchi6yrs agoGeneral
2
1
Last reply by tisuchi 6yrs ago
KingsleyO's avatar

Appending array to pagination

I have this code to filter categories which is an array plus location. $category = Input::get('maincat', []); $locate = Input::get('location'); $list = Buy::with('catbuy'); foreach ($category as $k => $cat) { $list->whereHas('catbuy', function($q) use ($cat){ $q->where('id', $cat); }); } $this['requests'] = $list-&

KingsleyO's avatar
KingsleyO's avatar KingsleyO6yrs agoLaravel
3
1
Last reply by KingsleyO 6yrs ago
tehseen's avatar

I need pagination with chunk

Is that possible to use paginate with chunk i mean the bottom number nav with chunk ? for example i need 6 item per row with chunk and have total 12 item in page with pagination is that something i can do with laravel for now i can use this below code but not success. In my controller public function getShop() { $products = Product::get()->all(); ret

tehseen's avatar
tehseen's avatar Nakov6yrs agoGeneral
11
1
Last reply by Nakov 6yrs ago
AtomCoder's avatar

Pagination issue when using diff() function

Hi Guys, I've just came across an issue with pagination when using the diff() function. The result actually paginates the data as expected, but I'm unable to use the $data->links() function within my blade file. I'm essentially trying to get the difference of two collections and the paginate the result, heres what I'm using to do that (simplified version without any where cl

AtomCoder's avatar
AtomCoder's avatar AtomCoder6yrs agoLaravel
4
1
Last reply by AtomCoder 6yrs ago
GodziLaravel's avatar

How to change data in pagination result ?

Hello , I would like to change data content in this pagination results! if ($id != auth()->user()->id) return response()->json(['error' => 'Not authorized.'], 403); $competenceLogs = CompetenceLog::where('member_id', '=', $id) ->orderby('created_at','DESC')->paginate(15); return $competenceLogs; this returns : { "curr

GodziLaravel's avatar
GodziLaravel's avatar jlrdw6yrs agoLaravel
1
1
Last reply by jlrdw 6yrs ago
nikankad's avatar

how to make a pagination where the link options are the number of items you want to show

is there anyway i can do this with pagination or do i need to use sql? this is what i mean:https://imgur.com/a/nkpKfWp

nikankad's avatar
nikankad's avatar Snapey6yrs agoLaravel
4
1
Last reply by Snapey 6yrs ago
fredmarks's avatar

Update/Recalculate pagination after dropping some items from collection

I am currently pulling some rows from my database, which I then do some addition logic on (I cannot do the logic directly when pulling the rows) foreach ($items as $key => $item) { if($item->foo == 'bar'){ $items->forget($key); } } I then use the pagination in my view response if ($item->cur

fredmarks's avatar
fredmarks's avatar Snapey6yrs agoLaravel
2
1
Last reply by Snapey 6yrs ago
Potti's avatar

Handling over 7k records, groupBy and pagination

I have a situation that can't get my head around. In database I have over 7k records. So pagination at server side best thing to do. But I can't do that because I must use groupBy on the data. Official Laravel Docs says "pagination operations that use a groupBy statement cannot be executed efficiently by Laravel." and It's offering a frontend custom pagination. What i

Potti's avatar
Potti's avatar Potti6yrs agoGeneral
6
1
Last reply by Potti 6yrs ago
deepu07's avatar

Laravel Pagination render()

Hi Guys, In my project, I'm getting this error ErrorException (E_ERROR) Call to undefined method stdClass::render() (View: Where I'm using custom pagination where After combining two objects in my code applying pagination. here is my pagination code public function paginateWithoutKey($items, $perPage = 15, $page = null, $options = []) { $page = $page ?: (Paginator:

deepu07's avatar
deepu07's avatar deepu076yrs agoLaravel
8
1
Last reply by deepu07 6yrs ago
ronyamin's avatar

Pagination issue with Search query

Hi, I want to add the pagination in my search query. But I a confused how to use pagination along with Join tables. Here is my query. $user = CareerSolution::where ( 'subject', 'LIKE', '%' . $q . '%' ) ->where('career_solutions.topic_category_id', '=', $c) ->join('role_users' , 'role_users.user_id', '=', 'career_solutions.user_id') -&

ronyamin's avatar
ronyamin's avatar jeffreyvan...6yrs agoLaravel
3
1
Last reply by jeffreyvanrossum 6yrs ago
ALINAWAZ's avatar

How to use the Laravel Vue Pagination

this is my vuejs component template Code Search for your name <input type="text" name="searchInput" id="searchInput" @keyup.enter="btnsearch" class="searchinput" v-model="searchInput"> <button class="searchbtn" @click="btnsearch">Search export default { data() {

ALINAWAZ's avatar
ALINAWAZ's avatar gwleuverin...6yrs agoVue
1
1
Last reply by gwleuverink 6yrs ago
unixlab's avatar

Nested comments pagination doesn't work properly

Hi everyone Following this tutorial https://laracasts.com/series/how-do-i/episodes/9 I created a single level nested comments and also added pagination. Comment Child comment Child comment Child comment If i say 2 comments per page then the result becomes Comment Child comment Do you see what's happening here? I want the pagination to work only for the top-level comments Do

unixlab's avatar
unixlab's avatar unixlab6yrs agoLaravel
12
1
Last reply by unixlab 6yrs ago
FabLPA's avatar

Search results with pagination but also containing information on all data without regard to pagination

Hi People, For a customer, I'm developing an API for an online book catalog and I'm drying out on a feature, or more specifically on some part of this feature. An example of what I try to obtain: https://bibliotheque.braille.be/fr/catalogue?filters%5Bsearch%5D=King On the left is a column of sub-filters that is based on all the results of the search. And on the right, the list

FabLPA's avatar
FabLPA's avatar FabLPA6yrs agoEloquent
0
1
calin.ionut's avatar

fit pagination on mobile devices

I can`t fit on mobile device the pagination. (laravel 6 and bootstrap 4) I found this function for pagination ( onEachSide() ) $products->onEachSide(1)->links() The results are ok when the page loads (screenshot attached): https://www.dropbox.com/s/k2aitr40ofastq3/pag_initial.png But the problem is when click on 3 and so on.... (screenshot attached): https://www.dropbo

calin.ionut's avatar
calin.ionut's avatar bglaskoww1yr agoLaravel
4
1
Last reply by bglaskoww 1yr ago
andreixfr's avatar

jQuery Ajax - when I switch the page it's loading blank page - Laravel pagination

I have a problem with my Laravel pagination and Ajax. When I'm on the parent / main page, I have all I need, but yesterday I implemented Ajax jQuery on this, and now, when I switch the pages, didn't reloading the page, which is good, but is loading a blank page, and I don't know why isn't loading content. ( example : https://imgur.com/a/sSI2IIo ) Here is my view: <div id=&qu

andreixfr's avatar
andreixfr's avatar Tray26yrs agoLaravel
1
1
Last reply by Tray2 6yrs ago
andreixfr's avatar

Avoid refreshing page at pagination Laravel

I want to avoid refreshing page when I switch the pages using pagination from Laravel, because when I switch the page 1 to page 2, I'm redirected to parent page. How can I avoid reloading page when I change the pages? I have 2 tabs at Invitation - Received and Initiated. On Initiated, I have pagination, when I press on page 2 for example, I'm redirected to parent page which is

andreixfr's avatar
andreixfr's avatar Tray26yrs agoLaravel
4
1
Last reply by Tray2 6yrs ago
ziben69's avatar

Laravel | Pagination - relationship table query

Hello guys, how can I use pagination, where my eloquent query looks: PageController - method show: $page = Page::where('slug', $slug)->with(['subpages'=>function($q) { $q->where('visible', 1)->orderBy('order', 'asc')->paginate(9); }])->first(); I would like to paginate subpages on page's View blade (Page one to many Subpage relationship) Here

ziben69's avatar
ziben69's avatar selvavigne...6yrs agoLaravel
1
1
Last reply by selvavignesh 6yrs ago
yoginth's avatar

How to display tasks by date created in pagination?

How to display tasks by date created in pagination? Currently, I'm using this builder to display the dates in pagination $tasks = Task::latest() ->where('done', 1) ->paginate(1) ->groupBy(function($item){ return $item->created_at->format('d-M-y'); }); The output looks like this with the same date, I want to display the unique

yoginth's avatar
yoginth's avatar yoginth6yrs agoLaravel
3
1
Last reply by yoginth 6yrs ago
AwadGorg's avatar

how can I Customize The Pagination view in laravel

hello laravel is using bootstrap to style the pagination and am not using bootstrap on my website so the design of pagination is not working how can I use my own CSS to customize the pagination and thanks

AwadGorg's avatar
AwadGorg's avatar AwadGorg6yrs agoLaravel
2
1
Last reply by AwadGorg 6yrs ago
migdalius's avatar

Pagination and search

I have standard search function public function kategorie(Request $request) { $query = $request->input('query'); $pages = Page::where('kategoria', 'like', "%$query%") ->orWhere('tags', 'like', "%$query%") ->paginate(10); return view('kategoria')->with('page

migdalius's avatar
migdalius's avatar migdalius6yrs agoLaravel
17
1
Last reply by migdalius 6yrs ago
chilldsgn's avatar

Ajax pagination loads entire page

I am attempting to create ajax pagination using a "load more" button instead of Laravel's default pagination. Now, I've spent the past couple of days searching online for a solution, but everything is jquery and I am relatively new to javascript and Laravel. I'd prefer to avoid jquery, since I am trying to get better at working with vanilla javascript. The index view

chilldsgn's avatar
chilldsgn's avatar chilldsgn6yrs agoCode Review
2
1
Last reply by chilldsgn 6yrs ago
pdellepiane's avatar

Get Query Information before Pagination

Hello, I'm trying to get a few counts on my full ORM query before doing the pagination because it breaks the total results and I need the whole results to make some calculations. Here is part of the code I'm trying to deal with: // Here I get the filtered users by type and situation and paginate the result $users = User::where('type',$type)->where('situation',$situation)->

pdellepiane's avatar
pdellepiane's avatar Snapey6yrs agoEloquent
3
1
Last reply by Snapey 6yrs ago

Want us to email you occasionally with Laracasts news?

Nine out of ten doctors recommend Laracasts over competing brands. Come inside, see for yourself, and massively level up your development skills in the process.

Learn
BrowseSeriesCreatorSeriesLaravel PathLarabitsPlayground
Discuss
ForumPodcastSupport
Extras
Gift CertificatesApparelFAQiOS AppTerms
Social
X(Twitter)TikTokYoutube

© Laracasts 2026. All rights reserved. Yes, all of them. That means you, Todd.

Proudly hosted with Laravel Forge and DigitalOcean.

Want us to email you occasionally with Laracasts news?

Nine out of ten doctors recommend Laracasts over competing brands. Come inside, see for yourself, and massively level up your development skills in the process.

Learn
BrowseSeriesCreatorSeriesLaravel PathLarabitsPlayground
Discuss
ForumPodcastSupport
Extras
Gift CertificatesApparelFAQiOS AppTerms
Social
X(Twitter)TikTokYoutube

© Laracasts 2026. All rights reserved. Yes, all of them. That means you, Todd.

Proudly hosted with Laravel Forge and DigitalOcean.