-
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
angel cruz
committed
Aug 10, 2020
1 parent
d55aac9
commit aa5dfcc
Showing
5 changed files
with
95 additions
and
40 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
/vendor/ |
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
{ | ||
"name": "abr4xas/gmaps-input-backpack", | ||
"description": "Custom Google Maps Input for Laravel Backpack", | ||
"license": "MIT", | ||
"authors": [ | ||
{ | ||
"name": "angel cruz", | ||
"email": "bullgram@gmail.com", | ||
"homepage": "https://angelcruz.dev", | ||
"role": "Developer" | ||
} | ||
], | ||
"keywords": [ | ||
"Laravel", | ||
"Backpack", | ||
"Backpack for Laravel", | ||
"Addon", | ||
"Admin Panel", | ||
"Google Maps" | ||
], | ||
"require": {}, | ||
"require-dev": {}, | ||
"autoload": { | ||
"psr-4": { | ||
"Abr4xas\\CustomGoogleMapsFieldForBackpack\\": "src/" | ||
} | ||
}, | ||
"scripts": {}, | ||
"config": { | ||
"sort-packages": true | ||
}, | ||
"extra": { | ||
"laravel": { | ||
"providers": [ | ||
"Abr4xas\\CustomGoogleMapsFieldForBackpack\\AddonServiceProvider" | ||
] | ||
} | ||
}, | ||
"minimum-stability": "dev", | ||
"prefer-stable": true | ||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
<?php | ||
|
||
namespace Abr4xas\CustomGoogleMapsFieldForBackpack; | ||
|
||
use Illuminate\Support\ServiceProvider; | ||
|
||
class AddonServiceProvider extends ServiceProvider | ||
{ | ||
/** | ||
* Perform post-registration booting of services. | ||
* | ||
* @return void | ||
*/ | ||
public function boot() | ||
{ | ||
$this->loadViewsFrom(realpath(__DIR__ . '/resources/views'), 'custom-google-maps-field-for-backpack'); | ||
} | ||
} |
This file contains 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