<?php
namespace App\Http\Controllers\Peserta;
use App\Http\Controllers\Controller;
use App\Models\PelatihanJadwal;
use Illuminate\Http\Request;
use Inertia\Inertia;
class JadwalController extends Controller
{
public function index()
{
$jadwals = PelatihanJadwal::with('pelatihan')->whereHas('pelatihan.pelatihan_pesertas',function($w){
$w->where('user_id', auth()->user()->id);
})->get();
return Inertia::render('Peserta/Jadwal/Index',compact('jadwals'));
}
}
Anons79 File Manager Version 1.0, Coded By Anons79
Email: [email protected]