Add Books page and minor improvements

This commit is contained in:
Muhammet Güler
2026-02-03 02:31:54 +03:00
parent 90565412a4
commit 03ff01f24d
18 changed files with 425 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
<?php
require __DIR__.'/vendor/autoload.php';
$app = require_once __DIR__.'/bootstrap/app.php';
$app->make('Illuminate\Contracts\Console\Kernel')->bootstrap();
use App\Models\Page;
$pages = Page::all();
foreach ($pages as $page) {
echo "ID: {$page->id} | Title: {$page->title} | Slug: {$page->slug} | Template: {$page->template}\n";
}