web.php 486 B

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