How to create numuerous pages in laravel at once from mysql ids

I need to create numeros files in Laravel each having it’s own incremental number:
page1.blade.php; page2.blade.php … ecc incrementing the number of the page automatically.
I can’t create the pages manually because i have to create more than 192 pages.

I want to create the pages using the function:
$page_number = $articles->id / 8
how can i do it?
$articles is the result of a query from mysql database.