1 | <?php |
||
9 | class CompanyController extends Controller |
||
10 | { |
||
11 | 4 | public function __construct() |
|
17 | |||
18 | /** |
||
19 | * Display the company data |
||
20 | * /company/company/ |
||
21 | * |
||
22 | * @return \Illuminate\Http\Response |
||
23 | */ |
||
24 | 2 | public function index() |
|
29 | |||
30 | |||
31 | /** |
||
32 | * update the company name and password (both optionally) |
||
33 | * @param CompanyRequest $request |
||
34 | * @return \Illuminate\Http\Response |
||
35 | */ |
||
36 | 2 | public function update(CompanyRequest $request) |
|
43 | } |
||
44 |