date = $date; $this->tanggal = $tanggal; } public function collection() { return Transaksi::orderBy('siswa_id','desc')->whereDate('created_at', $this->date)->get(); } public function view(): View { return view('dashboard.export', [ 'transaksi' => $this->collection(), 'date' => $this->date, 'tanggal' => $this->tanggal, 'jumlah' => 0 ]); } }