Example #1
0
 public function run()
 {
     EventShout::create(['id' => '1', 'shout' => 'Bumoto sa VCOMM Poll', 'event_id' => '2', 'user_id' => '17']);
 }
Example #2
0
 public function postAnnouncement(Request $request)
 {
     $data = $request->all();
     EventShout::create($data);
     return redirect("/");
 }