LaravelPackages.net
Acme Inc.
Toggle sidebar
adminarchitect/contacts

Admin Architect - Contacts

254
3
v1.0.1
About adminarchitect/contacts

adminarchitect/contacts is a Laravel package for admin architect - contacts. It currently has 3 GitHub stars and 254 downloads on Packagist (latest version v1.0.1). Install it with composer require adminarchitect/contacts. Discover more Laravel packages by adminarchitect or browse all Laravel packages to compare alternatives.

Last updated

Admin Architect - Contacts module

Note: The backend part of this package can be used only in conjunction with Admin Architect (terranet/administrator) package.

Installation

composer require adminarchitect/contacts

add service provider to config/app.php:

'providers' => [
    ...
    Terranet\Contacts\ServiceProvider::class
    ...
]
php artisan vendor:publish --provider="Terranet\\Contacts\\ServiceProvider"

Usage

$contacts = new Contacts('Google Inc.');
$contacts
    ->setDescription('<p>We’ve come a long way from the dorm room and the garage. </p>' .
        '<p>We moved into our headquarters in Mountain View, California—better known as the Googleplex—in 2004. </p>' .
        '<p>Today Google has more than 70 offices in more than 40 countries around the globe.</p>')
    ->setEmails(['[email protected]'])
    ->setPhones(['+1 734-332-6500', '+1 248-593-4000']);
    
$contacts->setAddress('1600 Amphitheatre Parkway Mountain View, CA 94043');

$contacts->department('Google Ann Arbor', function ($department) {
    $department->setDescription('Software development')
        ->setAddress('201 S. Division St. Suite 500 Ann Arbor, MI 48104')
        ->setPhones(['+1 734-332-6500'])
        ->setEmails(['[email protected]']);
});

$contacts->department('Google Detroit', function ($department) {
    $department->setDescription('Software development')
        ->setAddress('114 Willits Street Birmingham, MI 48009')
        ->setPhones(['+1 248-593-4000'])
        ->setEmails(['[email protected]']);
});

return $contacts->render();

Templates

Choose the template from one of predefined or create new one: config/contacts.php section template

Contact page - Default template

two columns

Contact page - Tow Columns template

Or in rows

Contact page - Tow Rows template

Star History Chart