for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Mckenziearts\LaravelOAuth\Providers;
use Illuminate\Support\Facades\Blade;
use Illuminate\Support\ServiceProvider;
class BladeServiceProvider extends ServiceProvider
{
/**
* Bootstrap services.
*
* @return void
*/
public function boot()
Blade::directive('socialite', function ($expression) {
// Check user needs :login or :register text
return "<?php echo LaravelSocialite::socialiteButtons($expression); ?>";
});
}
* Register bindings in the container.
public function register()
//