Advertisement
Guest User

controller

a guest
Oct 23rd, 2019
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. //ini ya
  2. $announcement = Investor::select('id','date', 'document', 'excerpt')
  3. ->where('type','=','investor')
  4. ->where('coverage','=','ANNOUNCEMENT')
  5. ->get();
  6.  
  7. return view('investors.announcement')
  8. ->with('ann',$ann)
  9. ->with('inves',$inves)
  10. ->with('announcement', $announcement)
  11. ->with('categorydate',$categorydate);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement