Edit File: FiltersControllerMiddleware.php
<?php namespace Illuminate\Routing; trait FiltersControllerMiddleware { /** * Determine if the given options exclude a particular method. * * @param string $method * @param array $options * @return bool */ public static function methodExcludedByOptions($method, array $options) { return (isset($options['only']) && ! in_array($method, (array) $options['only'])) || (! empty($options['except']) && in_array($method, (array) $options['except'])); } }
Back to File Manager