17 lines
221 B
PHP
17 lines
221 B
PHP
<?php
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
class HoldingController extends Controller
|
|
{
|
|
|
|
/**
|
|
* Display the specified resource.
|
|
*/
|
|
public function show()
|
|
{
|
|
|
|
return view('holding.index');
|
|
}
|
|
}
|