Rubenwouters\CrmLauncher\Controllers\PublishController::detail PHP Метод

detail() публичный Метод

Show detail of publishment
public detail ( integer $id ) : view
$id integer
Результат view
    public function detail($id)
    {
        $publishment = $this->publishment->find($id);
        $data = ['publishment' => $publishment, 'tweets' => $publishment->reactions()->where('tweet_id', '!=', '')->get(), 'posts' => $publishment->reactions()->where('fb_post_id', '!=', '')->get()];
        return view('crm-launcher::publisher.detail', $data);
    }