PATH:
home
/
lab2454c
/
crypto.keyreum.com
/
vendor
/
spatie
/
laravel-newsletter
/
src
<?php namespace Spatie\Newsletter; use Illuminate\Console\Command; use Newsletter; class NewsletterPermissions extends Command { /** * The name and signature of the console command. * * @var string */ protected $signature = 'newsletter:permissions {list?}'; /** * The console command description. * * @var string */ protected $description = 'Get the marketing permissions of an audience'; /** * Execute the console command. * * @return void */ public function handle() { $listName = $this->argument('list') ?? ''; $permissions = Newsletter::getMarketingPermissions($listName); $this->table( ['Marketing Permission', 'ID'], $permissions ); } }
[+]
Exceptions
[-] Newsletter.php
[edit]
[-] NewsletterList.php
[edit]
[+]
..
[-] NullDriver.php
[edit]
[-] NewsletterListCollection.php
[edit]
[-] NewsletterFacade.php
[edit]
[-] NewsletterPermissions.php
[edit]
[-] NewsletterServiceProvider.php
[edit]