1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
 
 | 
<?php
  namespace Illuminate\Contracts\Auth\Access;
  interface Authorizable {     /**      * Determine if the entity has a given ability.      *      * @param  string  $ability      * @param  array|mixed  $arguments      * @return bool      */     public function can($ability, $arguments = []); }
  
 |