PHP Класс Learner\Http\Controllers\Admin\LinkController

Наследование: extends BaseController
Показать файл Открыть проект

Защищенные свойства (Protected)

Свойство Тип Описание
$links Learner\Repositories\LinkRepositoryInterface Link repository.

Открытые методы

Метод Описание
__construct ( Learner\Repositories\LinkRepositoryInterface $links ) Instance the link repository.
destory ( integer $id ) : Illuminate\Http\JsonResponse Delete a link.
index ( ) : Illuminate\Database\Eloquent\Collection | Link[] Get all links.
store ( ) : Illuminate\Http\JsonResponse Store the link.
update ( integer $id ) : Illuminate\Http\JsonResponse Update link by id.

Описание методов

__construct() публичный Метод

Instance the link repository.
public __construct ( Learner\Repositories\LinkRepositoryInterface $links )
$links Learner\Repositories\LinkRepositoryInterface

destory() публичный Метод

admin/links/{id} delete
public destory ( integer $id ) : Illuminate\Http\JsonResponse
$id integer
Результат Illuminate\Http\JsonResponse

index() публичный Метод

admin/links get
public index ( ) : Illuminate\Database\Eloquent\Collection | Link[]
Результат Illuminate\Database\Eloquent\Collection | Learner\Models\Link[]

store() публичный Метод

admin/links post
public store ( ) : Illuminate\Http\JsonResponse
Результат Illuminate\Http\JsonResponse

update() публичный Метод

admin/links/{id} put
public update ( integer $id ) : Illuminate\Http\JsonResponse
$id integer
Результат Illuminate\Http\JsonResponse

Описание свойств