11 lines
382 B
PHP
11 lines
382 B
PHP
@props(['seat','student_name','school'])
|
|
<li {{ $attributes->class(['flex gap-x-4 px-3 py-5 justify-between']) }}>
|
|
<div>
|
|
{{ $seat }}
|
|
</div>
|
|
<div class="min-w-0 text-right">
|
|
<p class="text-sm font-semibold leading-6 text-gray-900">{{ $student_name }}</p>
|
|
<p class="mt-1 truncate text-xs leading-5 text-gray-500">{{ $school }}</p>
|
|
</div>
|
|
</li>
|