PHP code example of punksolid / laravel-wialon

1. Go to this page and download the library: Download punksolid/laravel-wialon library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

punksolid / laravel-wialon example snippets

 

        $units = \Punksolid\Wialon\Unit::all();
        
        dd($units);
        /**
            Illuminate\Support\Collection {#661
              #items: array:29 [
                0 => Punksolid\Wialon\Unit {#663
                  +id: 734477
                  +nm: "Audi RS8"
                  +mu: 0
                  +cls: 2
                  +uacl: 551920075299
                  +"pos": {#229
                    +"t": 1548292667
                    +"f": 1073741825
                    +"lc": 0
                    +"y": 52.33044
                    +"x": 9.78641
                    +"c": 73
                    +"z": 0
                    +"s": 1
                    +"sc": 0
                  }
                  +"lmsg": {#232
                    +"t": 1548292667
                    +"f": 1073741825
                    +"tp": "ud"
                    +"pos": {#233
                      +"y": 52.33044
                      +"x": 9.78641
                      +"c": 73
                      +"z": 0
                      +"s": 1
                      +"sc": 0
                    }
                    +"lc": 0
                    +"rt": 1548292668
                    +"p": {#234}
                  }
        */


        $notifications = Notification::all();
        dd($notifications);
        
        /*
         * Illuminate\Support\Collection {#3961
             #items: array:394 [
               0 => Punksolid\Wialon\Notification {#311
                 +id: 1
                 +n: "serobaronmibici"
                 +txt: "Test Notification Text"
                 +ta: 1539031912
                 +td: 1539636712
                 +ma: 0
                 +mmtd: null
                 +cdt: null
                 +mast: null
                 +mpst: null
                 +cp: null
                 +fl: 3
                 +tz: null
                 +la: null
                 +ac: 0
                 +un: array:2 [ …2]
                 +"act": array:1 [ …1]
                 +"trg": "geozone"
                 +"trg_p": {#233 …3}
                 +"crc": 285336170
                 +"ct": 1539031913
                 +"mt": 1539636712
                 +"nm": "serobaronmibici"
                 +"name": "serobaronmibici"
                 +"control_type": "geozone"
                 +"actions": array:1 [ …1]
                 +"text": "Test Notification Text"
                 +"resource": {#231 …9}
               }
         */


        $found_notification = Notification::findByUniqueId("{$resource_id}_{$notification_id}");