CustomService.php 204 B

1234567891011121314
  1. <?php
  2. namespace App\Services;
  3. class CustomService
  4. {
  5. public function getSmthUsefull()
  6. {
  7. $data = [
  8. 'content' => 'Some very <u>precious</u> info!',
  9. ];
  10. return view('widgets.custom', $data);
  11. }
  12. }