{"id":23491884,"url":"https://github.com/bhavinjr/laravel-alots","last_synced_at":"2026-04-29T23:04:27.069Z","repository":{"id":62493909,"uuid":"254281780","full_name":"bhavinjr/laravel-alots","owner":"bhavinjr","description":"Laravel SMS APIs for alots","archived":false,"fork":false,"pushed_at":"2021-04-15T04:50:51.000Z","size":8,"stargazers_count":0,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-07-14T21:41:39.439Z","etag":null,"topics":["alots-sms","alots-sms-laravel","laravel","laravel-alots-sms","laravel-sms","sms-laravel"],"latest_commit_sha":null,"homepage":"https://www.alots.in/","language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/bhavinjr.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2020-04-09T05:43:21.000Z","updated_at":"2021-04-15T04:49:06.000Z","dependencies_parsed_at":"2022-11-02T11:17:47.189Z","dependency_job_id":null,"html_url":"https://github.com/bhavinjr/laravel-alots","commit_stats":null,"previous_names":[],"tags_count":4,"template":false,"template_full_name":null,"purl":"pkg:github/bhavinjr/laravel-alots","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bhavinjr%2Flaravel-alots","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bhavinjr%2Flaravel-alots/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bhavinjr%2Flaravel-alots/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bhavinjr%2Flaravel-alots/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/bhavinjr","download_url":"https://codeload.github.com/bhavinjr/laravel-alots/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bhavinjr%2Flaravel-alots/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32447312,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-29T22:27:22.272Z","status":"ssl_error","status_checked_at":"2026-04-29T22:10:49.234Z","response_time":110,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["alots-sms","alots-sms-laravel","laravel","laravel-alots-sms","laravel-sms","sms-laravel"],"created_at":"2024-12-25T01:31:13.748Z","updated_at":"2026-04-29T23:04:27.054Z","avatar_url":"https://github.com/bhavinjr.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"# laravel-alots\n\nA simple alots sms gateway implementation for Laravel 5.*|6.*|7.* \n\nFor more information please visit:- https://www.alots.in/\n\n[![Latest Stable Version](https://poser.pugx.org/bhavinjr/laravel-alots/v/stable)](https://packagist.org/packages/bhavinjr/laravel-alots)\n[![Total Downloads](https://poser.pugx.org/bhavinjr/laravel-alots/downloads)](https://packagist.org/packages/bhavinjr/laravel-alots)\n[![License](https://poser.pugx.org/bhavinjr/laravel-alots/license)](https://packagist.org/packages/bhavinjr/laravel-alots)\n\n## Installation\n\nFirst, you'll need to install the package via Composer:\n\n```shell\n$ composer require bhavinjr/laravel-alots\n```\n\nIf you are don't use using Laravel 5.5.* Then, update `config/app.php` by adding an entry for the service provider.\n\n\n```php\n'providers' =\u003e [\n    // ...\n    Bhavinjr\\Alots\\Providers\\AlotsServiceProvider::class,\n];\n\n'aliases' =\u003e [\n    //...\n    \"Alots\": \"Bhavinjr\\Alots\\Facades\\Alots\",\n];\n```\n\nIn command line paste this command:\n```shell\nphp artisan config:cache\n```\n\nIn command line again, publish the default configuration file:\n```shell\nphp artisan vendor:publish --provider=\"Bhavinjr\\Alots\\Providers\\AlotsServiceProvider\"\n```\n\nIn command line paste this command:\n```shell\nphp artisan migrate\n```\n\n\n## Configuration\n\nConfiguration was designed to be as flexible.\nglobal configuration can be set in the `config/alots.php` file.\n\n\n```\u003c?php\nreturn [\n    'table_names' =\u003e [\n        'messages'    =\u003e 'alots_messages',\n    ],\n];\n```\n\nafter update `config/alots.php` file.\n```shell\nphp artisan config:cache\n```\n\n## Usage\n\nThe package gives you the following methods to use:\n\nSend sms is really simple \n\nyou need specify mobile_number and sms_text respectively all parameter are compulsory\n\n### Alots::simpleSms()\n\n```php\nAlots::simpleSms('9876543210', 'test sms');\n```\n\n### Alots::unicodeSms()\n\nSend unicode sms\n\n```php\nAlots::unicodeSms('9876543210', 'test sms');\n```\n\n### Alots::scheduleSms()\n\nYou can schedule sms\n\n```php\nAlots::scheduleSms('9876543210', 'test sms', '01012020-1010AM');\n```\n\n### Alots::groupSms()\n\nSend sms using group\n\nyou need specify group_id and sms_text respectively all parameter are compulsory\n\n```php\nAlots::groupSms('123', 'test sms');\n```\n\n### Alots::getDeliveryReport()\n\nTo check sms delivery status.\n\nyou need specify message_id\n\n```php\nAlots::getDeliveryReport('123');\n```\n\n\n### Alots::checkCredit()\n\nTo check available sms/credit limit.\n\n```php\nAlots::checkCredit();\n```","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbhavinjr%2Flaravel-alots","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbhavinjr%2Flaravel-alots","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbhavinjr%2Flaravel-alots/lists"}