%PDF- %PDF-
Direktori : /home/forge/api-takeaseat.eco-n-tech.co.uk/vendor/laravel/nova/src/ |
Current File : //home/forge/api-takeaseat.eco-n-tech.co.uk/vendor/laravel/nova/src/Tool.php |
<?php namespace Laravel\Nova; use Illuminate\Http\Request; abstract class Tool { use AuthorizedToSee, Makeable, ProxiesCanSeeToGate; /** * Create a new Tool. * * @return void */ public function __construct() { // } /** * Determine if the element should be displayed for the given request. * * @param \Illuminate\Http\Request $request * @return bool */ public function authorize(Request $request) { return $this->authorizedToSee($request); } /** * Perform any tasks that need to happen on tool registration. * * @return void */ public function boot() { // } /** * Build the view that renders the navigation links for the tool. * * @return \Illuminate\View\View|string */ public function renderNavigation() { return ''; } }