This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/php -q | |
<?php | |
require 'db.php'; | |
global $agi,$conn; | |
require 'phpagi.php'; | |
$agi = new AGI(); | |
$agi->answer(); | |
$array_url = getUrl(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/php -q | |
<?php | |
require 'db.php'; | |
global $agi,$conn; | |
require 'phpagi.php'; | |
$agi = new AGI(); | |
$agi->answer(); | |
$array_url = getUrl(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template> | |
<div class="container"> | |
<div class="row justify-content-center"> | |
<div class="col-md-8"> | |
<div class="card"> | |
<div class="card-header">Example Component</div> | |
<div class="card-body"> | |
I'm an example component. | |
</div> | |
</div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace App\Command; | |
use Symfony\Component\Console\Command\Command; | |
use Symfony\Component\Console\Input\InputInterface; | |
use Symfony\Component\Console\Output\OutputInterface; | |
use Symfony\Component\Config\Definition\Exception\Exception; | |
use Symfony\Component\Cache\Adapter\AdapterInterface; | |
use Symfony\Component\Cache\CacheItem; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace App\Command; | |
use Symfony\Component\Console\Command\Command; | |
use Symfony\Component\Console\Input\InputInterface; | |
use Symfony\Component\Console\Output\OutputInterface; | |
use Symfony\Component\Config\Definition\Exception\Exception; | |
use Symfony\Component\Cache\Adapter\AdapterInterface; | |
use Symfony\Component\Cache\CacheItem; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$query = Lead::whereIn('channel_id', $array_channel); | |
if(!empty($request->get('startDateTime')) && !empty($request->get('endDateTime'))) | |
{ | |
$startDateTime = Carbon::parse($request->get('startDateTime')); | |
$endDateTime = Carbon::parse($request->get('endDateTime')); | |
$query->whereBetween('submitted_date_time', [$startDateTime, $endDateTime]); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace App; | |
use Illuminate\Database\Eloquent\Model; | |
class Campaign extends Model | |
{ | |
// | |
protected $table = 'campaigns'; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
use Faker\Generator as Faker; | |
use App\Country; | |
use App\CampaignStatus; | |
use App\DurationCycleUnit; | |
use App\PaymentType; | |
use App\PaymentTerm; | |
use App\LandingPageLanguage; | |
use App\Currency; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
ip: "192.168.13.13" | |
memory: 4096 | |
cpus: 1 | |
name: laravel-apps-homestead-vmbox | |
provider: virtualbox | |
authorize: ~/.ssh/id_rsa.pub | |
keys: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ip: "192.168.10.10" | |
memory: 4096 | |
cpus: 1 | |
name: heroleads-homestead-vmbox | |
hostname: heroleads.com | |
provider: virtualbox | |
authorize: ~/.ssh/id_rsa.pub | |
keys: |
NewerOlder