From da93c9814dd12812159972a0caecc9277c165686 Mon Sep 17 00:00:00 2001 From: isaacclad Date: Sat, 4 Jul 2026 02:37:25 +0000 Subject: [PATCH] Show rotate icon for Restart webinar on mobile. Replace restart button text with a compact arrow-path icon on small screens while keeping the full label on desktop. Co-authored-by: Cursor --- resources/views/meet/webinars/show.blade.php | 27 ++++++++++++++++++-- 1 file changed, 25 insertions(+), 2 deletions(-) diff --git a/resources/views/meet/webinars/show.blade.php b/resources/views/meet/webinars/show.blade.php index 71321fd..f0dd101 100644 --- a/resources/views/meet/webinars/show.blade.php +++ b/resources/views/meet/webinars/show.blade.php @@ -1,4 +1,7 @@ + @php + $webinarRestarting = $room->status === 'ended' || $room->sessions->isNotEmpty(); + @endphp
@@ -9,7 +12,19 @@ @if ($room->canRestart())
@csrf - +
@endif
@@ -41,7 +56,15 @@ @if ($room->canRestart() && ($room->status === 'ended' || $room->sessions->isNotEmpty()))
@csrf - +
@endif