コード例 #1
0
 /**
  * Fetch link by url
  *
  * @param $url
  *
  * @return mixed
  */
 public function byUrl($url)
 {
     return Link::whereUrl($url)->first();
 }
コード例 #2
0
 public function test_gets_url_by_hash()
 {
     Link::create(['url' => 'http://laracasts.com', 'hash' => 'asdfg']);
     $url = Little::getUrlByHash('asdfg');
     $this->assertEquals('http://laracasts.com', $url);
 }