@extends('layouts.backend') @section('css') @endsection @section('js') @vite(['resources/js/pages/datatables.js']) @endsection @section('content')

DataTables Example

Plugin Example

This page showcases how easily you can add a plugin’s JS/CSS assets and init it using custom JS code.

Dynamic Table Full

@for ($i = 1; $i < 21; $i++) @endfor
# Name Email Registered
John Doe client{{ $i }}@example.com {{ rand(2, 10) }} days ago

Dynamic Table Export Buttons

@for ($i = 1; $i < 21; $i++) @endfor
# Name Email Registered
{{ $i }} John Smith client{{ $i }}@example.com {{ rand(2, 10) }} days ago
@endsection