How to get all data from repository?
I wanna get all models from repository and show.
How to get all data?
5 Replies
Hi, @ifox , Please look at this.
Please read the #✅rules @HealMan, you don't need to ping me.
Okay, Got it
This is a basic Laravel question, not really Twill.
Model::all()
, or preferably, Model::paginate()
which data do you mean exactlyOh, that works. thank you.