An open API service indexing awesome lists of open source software.

https://github.com/its-digital-technology/support

Package of support classes for Northeastern University websites
https://github.com/its-digital-technology/support

Last synced: 3 months ago
JSON representation

Package of support classes for Northeastern University websites

Awesome Lists containing this project

README

        

# Northeastern Support

Package of support classes for Northeastern University websites

## Installation

You can install the package via composer:

```bash
composer require northeastern-web/support
```

## Usage

### Meta tags

The package includes the Meta class for any meta related tags.

Add the following code to inside your `` tag.

```php

```

If your project is using Laravel Blade's templating engine, you can add the following code.

```blade
{!! Northeastern\Support\Meta::head() !!}
```

### Analytics scripts

The package includes the Analytics class for the Northeastern analytics scripts.

Add the following code to inside your `` tag.

```php

```

And add the following code just after your opening `` tag.

```php

```

If your project is using Laravel Blade's templating engine, you can add the following code inside your `` tag.

```blade
{!! Northeastern\Support\Analytics::googleTagManagerScript() !!}
```

And add the following code just after your opening `` tag.

```blade
{!! Northeastern\Support\Analytics::googleTagManagerNoScript() !!}
```