Attendize/app/Http/Controllers/EventPromoteController.php

20 lines
349 B
PHP
Raw Normal View History

2016-03-05 00:18:10 +00:00
<?php
2016-02-29 15:59:36 +00:00
2016-03-05 00:18:10 +00:00
namespace App\Http\Controllers;
class EventPromoteController extends MyBaseController
{
/**
* @param $event_id
* @return mixed
*/
2016-03-05 00:18:10 +00:00
public function showPromote($event_id)
{
2016-02-29 15:59:36 +00:00
$data = [
2016-03-05 00:18:10 +00:00
'event' => Event::scope()->find($event_id),
2016-02-29 15:59:36 +00:00
];
2016-03-05 00:18:10 +00:00
return view('ManageEvent.Promote', $data);
2016-02-29 15:59:36 +00:00
}
}