Modules\Newsletter\Controllers\Backend\SubscriberController::index PHP 메소드

index() 공개 메소드

Display a listing of the newsletters.
public index ( ) : View
리턴 View
    public function index()
    {
        $subscribers = NewsletterSubscriber::all();
        $this->layout->title = 'All Subscribers';
        $this->layout->content = View::make('newsletter-subscribers::index')->with('subscribers', $subscribers);
    }