Edit File: display-table.blade.php
<table class="w-full border-black border-2 dark:border-white"> <thead class="bg-black font-extrabold text-white"> <tr> @foreach ($columns as $column) <th class="text-sm md:text-base lg:text-lg py-1 capitalize" colspan={{ $column == "actions" ? "2" : "1" }}>{{$column}}</th> @endforeach </tr> </thead> {{ $slot }} </table>
Back