Rubenwouters\CrmLauncher\Controllers\PublishController::index PHP Method

index() public method

Show start view of publisher
public index ( ) : view
return view
    public function index()
    {
        $publishments = $this->publishment->orderBy('id', 'DESC')->paginate(5);
        return view('crm-launcher::publisher.index')->with('publishments', $publishments);
    }