Edit File: MailHtmlController.php
<?php namespace Laravel\Telescope\Http\Controllers; use Illuminate\Routing\Controller; use Laravel\Telescope\Contracts\EntriesRepository; class MailHtmlController extends Controller { /** * Get the HTML content of the given email. * * @param \Laravel\Telescope\Contracts\EntriesRepository $storage * @param int $id * @return mixed */ public function show(EntriesRepository $storage, $id) { return $storage->find($id)->content['html']; } }
Back to File Manager