{{-- Action Buttons Component for Admin Tables --}} @props([ 'viewRoute' => null, 'editRoute' => null, 'deleteRoute' => null, 'customButtons' => [], 'size' => 'sm', 'layout' => 'horizontal' // horizontal or vertical ])
{{-- View Button --}} @if($viewRoute) Xem @endif {{-- Edit Button --}} @if($editRoute) Sửa @endif {{-- Delete Button --}} @if($deleteRoute) @endif {{-- Custom Buttons --}} @foreach($customButtons as $button) @if(isset($button['icon'])) @endif {{ $button['text'] ?? '' }} @endforeach