Skip to content

Instantly share code, notes, and snippets.

@nulpatrol
Last active August 21, 2018 16:14
Show Gist options
  • Save nulpatrol/571f1bc85e95dcb8d7fc0edce2f45c5f to your computer and use it in GitHub Desktop.
Save nulpatrol/571f1bc85e95dcb8d7fc0edce2f45c5f to your computer and use it in GitHub Desktop.
About Laravel Facades

Facade

Example of facade:

<?php

namespace Illuminate\Support\Facades;

class Route extends Facade
{
    protected static function getFacadeAccessor()
    {
        return 'router';
    }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment