PHP Класс App\Http\Controllers\CreditController

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

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

Свойство Тип Описание
$creditRepo
$creditService
$entityType

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

Метод Описание
__construct ( CreditRepository $creditRepo, CreditService $creditService )
bulk ( )
create ( App\Http\Requests\CreditRequest $request )
getDatatable ( $clientPublicId = null )
index ( ) : Response Display a listing of the resource.
store ( App\Http\Requests\CreateCreditRequest $request ) * public function edit($publicId) { $credit = Credit::scope($publicId)->firstOrFail();

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

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

public __construct ( CreditRepository $creditRepo, CreditService $creditService )
$creditRepo App\Ninja\Repositories\CreditRepository
$creditService App\services\CreditService

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

public bulk ( )

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

public create ( App\Http\Requests\CreditRequest $request )
$request App\Http\Requests\CreditRequest

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

public getDatatable ( $clientPublicId = null )

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

Display a listing of the resource.
public index ( ) : Response
Результат Response

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

$this->authorize('edit', $credit); $credit->credit_date = Utils::fromSqlDate($credit->credit_date); $data = array( 'client' => null, 'credit' => $credit, 'method' => 'PUT', 'url' => 'credits/'.$publicId, 'title' => 'Edit Credit', 'clients' => Client::scope()->with('contacts')->orderBy('name')->get(), ); return View::make('credit.edit', $data); }
public store ( App\Http\Requests\CreateCreditRequest $request )
$request App\Http\Requests\CreateCreditRequest

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

$creditRepo защищенное свойство

protected $creditRepo

$creditService защищенное свойство

protected $creditService

$entityType защищенное свойство

protected $entityType