From fbf521e6c23ebaa39dcab51c352b58d771ca704b Mon Sep 17 00:00:00 2001 From: Hazem-Ashraf-SE <157379336+Hazem-Ashraf-SE@users.noreply.github.com> Date: Thu, 20 Feb 2025 22:28:28 +0200 Subject: [PATCH] Update welcome.blade.php --- .../resources/views/welcome.blade.php | 61 ++++++++++--------- 1 file changed, 33 insertions(+), 28 deletions(-) diff --git a/WebSecService/resources/views/welcome.blade.php b/WebSecService/resources/views/welcome.blade.php index 1edf3cdc..e572f688 100644 --- a/WebSecService/resources/views/welcome.blade.php +++ b/WebSecService/resources/views/welcome.blade.php @@ -3,35 +3,40 @@ - Bootstrap Test - - + Multiplication Table + + -1) { - if($number%$i==0) return false; - $i--; - } - return true; - } -?> + -
-
Prime Numbers
-
- @foreach (range(1, 100) as $i) - @if(isPrime($i)) - {{$i}} - @else - {{$i}} - @endif - @endforeach -
-
+
+

Multiplication Table bootstrap Styled

+

This is a simple Multiplication table using bootstrap.

+
+
+

Multiplication Table

+
+ + + + + @for ($col = 1; $col <= 9; $col++) + + @endfor + + + + @for ($row = 1; $row <= 5; $row++) + + + @for ($col = 1; $col <= 9; $col++) + + @endfor + + @endfor + +
×{{ $col }}
{{ $row }}{{ $row * $col }}
+
+
- -