File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -277,8 +277,6 @@ It is possible to send a simple message without creating views by passing a stri
277277 SMS::send('This is my message', [], function($sms) {
278278 $sms->to('+15555555555');
279279 });
280-
281- > The simple message format is only supported on Laravel 5.
282280
283281#### Driver
284282
Original file line number Diff line number Diff line change @@ -227,17 +227,6 @@ The `send` method sends the SMS through the configured driver using a Laravel vi
227227 SMS::send('simple-sms::welcome', $data, function($sms) {
228228 $sms->to('+15555555555');
229229 });
230-
231- It is possible to send a simple message without creating views by passing a string instead of a view.
232-
233- SMS::send($message, [], function($sms) {
234- $sms->to('+15555555555');
235- }
236- SMS::send('This is my message', [], function($sms) {
237- $sms->to('+15555555555');
238- });
239-
240- > The simple message format is only supported on Laravel 5.
241230
242231#### Queue
243232
You can’t perform that action at this time.
0 commit comments