pagination error – laravel Method Illuminate\Database\Eloquent\Collection::paginate does not exist

Solution:

You can’t use paginate after get so you want to change your code like below.

$trackings = Tracking::with('order')->paginate(15);