You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Table.php 448B

1234567891011121314151617181920212223242526
  1. <?php
  2. namespace App\View\Components;
  3. use Closure;
  4. use Illuminate\View\Component;
  5. use Illuminate\Contracts\View\View;
  6. class Table extends Component
  7. {
  8. /**
  9. * Create a new component instance.
  10. */
  11. public function __construct()
  12. {
  13. //
  14. }
  15. /**
  16. * Get the view / contents that represent the component.
  17. */
  18. public function render(): View|Closure|string
  19. {
  20. return view('components.table');
  21. }
  22. }