Liste
| ID | Nume lista | Abonati | Actiune |
|---|---|---|---|
| {{ $list->id }} | {{ $list->name }} | {{ $list->subscribers()->count() }} | {!! Form::open([ 'method'=>'DELETE', 'url' => ['/lists', $list->id], 'style' => 'display:inline' ]) !!} {!! Form::button('', array( 'type' => 'submit', 'class' => 'btn btn-danger btn-xs', 'title' => 'Sterge lista', 'onclick'=>'return confirm("Confirm delete?")' ));!!} {!! Form::close() !!} {{--Vezi--}} {{--Sterge--}} |