Initial V2 commit 4

This commit is contained in:
Hamza-Ayed
2026-04-22 23:16:23 +03:00
parent 3269a836a2
commit 3f4afd0f5c
47 changed files with 456 additions and 72 deletions

12
artisan
View File

@@ -1,6 +1,18 @@
#!/usr/bin/env php
<?php
/**
* ملف Artisan (أداة سطر الأوامر في Laravel)
*
* الغرض من الملف:
* هو المحرك الأساسي للأوامر التي تنفذها في "Terminal" مثل (php artisan migrate) أو (php artisan make:controller).
*
* كيفية العمل:
* 1. يقوم بتحميل ملفات المشروع الأساسية (autoload.php).
* 2. يستدعي بيئة العمل (Bootstrap) لتجهيز التطبيق.
* 3. يستقبل الأمر الذي كتبته في سطر الأوامر ويقوم بتنفيذه داخل إطار عمل Laravel.
*/
define('LARAVEL_START', microtime(true));
require __DIR__.'/vendor/autoload.php';