PHP 클래스 App\Http\Controllers\CreditController

상속: extends BaseController
파일 보기 프로젝트 열기: hillelcoren/invoice-ninja 1 사용 예제들

보호된 프로퍼티들

프로퍼티 타입 설명
$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