2017 © Pedro Peláez
 

library rtclientmanager

image

rtmatt/rtclientmanager

  • Saturday, October 8, 2016
  • by RTMatt
  • Repository
  • 1 Watchers
  • 0 Stars
  • 35 Installations
  • HTML
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 22 Versions
  • 0 % Grown

The README.md

Prerequisites:

  • Laravel 5.*
  • Auth Routes and Users Set Up
  • Correct Mail set up from the Mail::send facade

Installation

Via Composer

``` bash composer require rtmatt/rtclientmanager, (*1)

###Add Service Providers
Note: you may need to add this before the route service provider to ensure the proper routes are registered
``` php 
\RTMatt\MonthlyService\Providers\MonthlyServiceServiceProvider::class,
'Barryvdh\Cors\ServiceProvider',

Register middleware

in app/http/kernel, (*2)

'rtapi' => \RTMatt\MonthlyService\Middleware\RTAPIMiddleware::class

Publish Migrations

``` bash php artisan vendor:publish --provider="RTMatt\MonthlyService\Providers\MonthlyServiceServiceProvider" --tag="migrations", (*3)


### Run Migrations ``` bash php artisan migrate

Publish public assets

``` bash php artisan vendor:publish --provider="RTMatt\MonthlyService\Providers\MonthlyServiceServiceProvider" --tag="public", (*4)



###Configure CORS

php artisan vendor:publish --provider="Barryvdh\Cors\ServiceProvider", (*5)



in config/cors.php ``` php 'supportsCredentials' => false, 'allowedOrigins' => ['*'], 'allowedHeaders' => ['*'], 'allowedMethods' => ['POST'], 'exposedHeaders' => [], 'maxAge' => 0, 'hosts' => [],

Admin layout

Make you have the following in your admin layout: * Bootstrap CSS (grid) * jQuery, (*6)

``` html , (*7)


For the Priortity Alert Manager to Work, you Need bootstraps js ``` html <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js" integrity="sha384-0mSbJDEHialfmuBBQP6A4Qrprq5OVfW37PRR3j5ELqxss1yVqOtnepnHVP9aJ7xS" crossorigin="anonymous"></script>

And add this before the closing body tag ``` html , (*8)

### Configuration
You can publish configs with the following command

``` bash 
php artisan vendor:publish --provider="RTMatt\MonthlyService\Providers\MonthlyServiceServiceProvider" --tag="config" 

Available .env Configs

RTDB_HOME_EMAIL_NAME=the name for PA email target
RTDB_HOME_EMAIL=the email address target for PA mail
RTDB_HOME_EMAIL_NAME_CC=the name for PA CC email target - null to turn off CC
RTDB_HOME_EMAIL_CC=the email address for PA CC email target - null to turn off CC
RTDB_ORIGIN_EMAIL_NAME=PA From email name
RTDB_ORIGIN_EMAIL=PA From email email address

The Versions

08/10 2016

1.0.0.x-dev

1.0.0.9999999-dev

  Sources   Download

The Requires

 

by Matt Emrick

08/10 2016

1.0.0

1.0.0.0

  Sources   Download

The Requires

 

by Matt Emrick

22/07 2016

1.0.0-alpha6

1.0.0.0-alpha6

  Sources   Download

The Requires

 

by Matt Emrick

22/07 2016

1.0.0-beta

1.0.0.0-beta

  Sources   Download

The Requires

 

by Matt Emrick

19/07 2016

1.0.0-alpha5

1.0.0.0-alpha5

  Sources   Download

The Requires

 

by Matt Emrick

17/07 2016

dev-master

9999999-dev

  Sources   Download

The Requires

 

by Matt Emrick

17/07 2016

1.0.0-alpha4

1.0.0.0-alpha4

  Sources   Download

The Requires

 

by Matt Emrick

17/07 2016

v1.0.0-alpha

1.0.0.0-alpha

  Sources   Download

The Requires

 

by Matt Emrick

17/07 2016

0.0.12

0.0.12.0

  Sources   Download

The Requires

 

by Matt Emrick

16/07 2016

0.0.11

0.0.11.0

  Sources   Download

The Requires

 

by Matt Emrick

16/07 2016

0.0.10

0.0.10.0

  Sources   Download

The Requires

 

by Matt Emrick

16/07 2016

0.0.8

0.0.8.0

  Sources   Download

The Requires

 

by Matt Emrick

16/07 2016

0.0.9

0.0.9.0

  Sources   Download

The Requires

 

by Matt Emrick

16/07 2016

dev-trailing-sashes

dev-trailing-sashes

  Sources   Download

The Requires

 

by Matt Emrick

16/07 2016

0.0.7

0.0.7.0

  Sources   Download

The Requires

 

by Matt Emrick

16/07 2016

0.0.6

0.0.6.0

  Sources   Download

The Requires

 

by Matt Emrick

16/07 2016

0.0.5

0.0.5.0

  Sources   Download

The Requires

 

by Matt Emrick

16/07 2016

0.0.4

0.0.4.0

  Sources   Download

The Requires

 

by Matt Emrick

16/07 2016

0.0.3

0.0.3.0

  Sources   Download

The Requires

 

by Matt Emrick

16/07 2016

0.0.2

0.0.2.0

  Sources   Download

The Requires

 

by Matt Emrick

16/07 2016
16/07 2016

dev-merge

dev-merge

  Sources   Download

The Requires

 

The Development Requires

by Matt Emrick