You are on page 1of 1

https://www.sitepoint.

com/create-qr-code-reader-mobile-website/

L advanced;
C:\xampp\apache\conf\extra\httpd-vhosts.conf

\Log::info('ceva', array ['user' => $user])

2. function chain
proteted function a(){
$return $this;
}

protected function b(){


return $this;
}

$this->a()->b();

3. events and listeners


https://www.youtube.com/watch?
v=9oYtUEbT19I&index=2&list=PL3ZhWMazGi9JImZ4Xl1n1NDqZRQYaY2IE

https://www.youtube.com/watch?
v=V3qsMmSJFME&list=PL3ZhWMazGi9JImZ4Xl1n1NDqZRQYaY2IE&index=4
php artisan event::generate

4.
php artisan config:clear
php artisan cache:clear
php artisan route:clear
php artisan view:clear
php artisan optimize

5.
$data['table_header'] = $global_headers;
$perPage = 100;
$currentPage = $currentArrPage;
$currentPage = $currentPage -1;
$pagedData = array_slice($global_truncated_data, $currentPage *
$perPage, $perPage);
$global_truncated_data = new Paginator($pagedData,
count($global_truncated_data), $perPage);

$data['table_rows'] = $global_truncated_data;

You might also like