Added echomail search and display
This commit is contained in:
19
app/Http/Controllers/EchomailController.php
Normal file
19
app/Http/Controllers/EchomailController.php
Normal file
@@ -0,0 +1,19 @@
|
||||
<?php
|
||||
|
||||
namespace App\Http\Controllers;
|
||||
|
||||
use App\Models\Echomail;
|
||||
|
||||
class EchomailController extends Controller
|
||||
{
|
||||
public function __construct()
|
||||
{
|
||||
$this->middleware('auth');
|
||||
}
|
||||
|
||||
public function view(Echomail $o)
|
||||
{
|
||||
return view('echomail.view')
|
||||
->with('o',$o);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user