اذهب إلى المحتوى

السؤال

Recommended Posts

  • 0
نشر

توفر لك Laravel إمكانية الحصول على جميع  routes التي قمت بإنشائها عن طريق Route::getRoutes()

بحيث تقوم بإرجاع routes على شكل RouteCollection,

ومن خلال كل عنصر يمكنك قراءة المسار عن طريق $route->getPath()

فيصبح الشكل كالآتي:

$routes = Route::getRoutes();

foreach ($routes as $value) {
    echo $value->getPath();
}

 

  • 0
نشر

يمكنك استخدام الكود التالي لإ

Route::get('routes', function() {
    $routeCollection = Route::getRoutes();

    echo "<table style='width:100%'>";
        echo "<tr>";
            echo "<td width='10%'><h4>HTTP Method</h4></td>";
            echo "<td width='10%'><h4>Route</h4></td>";
            echo "<td width='10%'><h4>Name</h4></td>";
            echo "<td width='70%'><h4>Corresponding Action</h4></td>";
        echo "</tr>";
        foreach ($routeCollection as $value) {
            echo "<tr>";
                echo "<td>" . $value->getMethods()[0] . "</td>";
                echo "<td>" . $value->getPath() . "</td>";
                echo "<td>" . $value->getName() . "</td>";
                echo "<td>" . $value->getActionName() . "</td>";
            echo "</tr>";
        }
    echo "</table>";
});

بحيث أنه سيتم عرض 

  • HTTP Method.
  • Route.
  • Name.
  • Corresponding Action . 

لكل route , أو يمكنك تنفيذ أمر Artisan::call لتنفيذ أمر route:list بداخل المتصفح عن طريق الكود التالي 

Route::get('routes', function() {
     \Artisan::call('route:list');
     return \Artisan::output();
});

 

انضم إلى النقاش

يمكنك أن تنشر الآن وتسجل لاحقًا. إذا كان لديك حساب، فسجل الدخول الآن لتنشر باسم حسابك.

زائر
أجب على هذا السؤال...

×   لقد أضفت محتوى بخط أو تنسيق مختلف.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   جرى استعادة المحتوى السابق..   امسح المحرر

×   You cannot paste images directly. Upload or insert images from URL.

  • إعلانات

  • تابعنا على



×
×
  • أضف...