web.php 482 B

12345678910111213
  1. <?php
  2. use Illuminate\Support\Facades\Route;
  3. Route::get('/', function (){
  4. // Fetch the datatable name dynamically from the database (replace with your logic)
  5. $datatableName = DB::table('datatables')->where('name', '=', 'Employee-Report')->value('name');
  6. // Pass it to the view
  7. return view('MainView', compact('datatableName'));
  8. });
  9. Route::get('/login', \App\Livewire\Login::class);
  10. Route::view('/test-datatables', 'components.layouts/datatables');