Added echomail search and display

This commit is contained in:
Deon George
2021-08-29 11:48:27 +10:00
parent 12f9ee1960
commit 271f066667
7 changed files with 99 additions and 2 deletions

View 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);
}
}