25 lines
471 B
PHP
25 lines
471 B
PHP
<?php
|
|
|
|
namespace Koneko\VuexyStoreManager\Http\Controllers;
|
|
|
|
use App\Http\Controllers\Controller;
|
|
|
|
class CompanyController extends Controller
|
|
{
|
|
/**
|
|
* Display the specified resource.
|
|
*/
|
|
public function index()
|
|
{
|
|
return view('vuexy-store-manager::company.index');
|
|
}
|
|
|
|
/**
|
|
* Show the form for editing the specified resource.
|
|
*/
|
|
public function edit()
|
|
{
|
|
return view('vuexy-store-manager::company.edit');
|
|
}
|
|
}
|