clrghouz/app/Http/Controllers/EchomailController.php

19 lines
271 B
PHP
Raw Normal View History

2021-08-29 01:48:27 +00:00
<?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);
}
}