My Laravel
Saturday, February 8, 2020
Monday, December 23, 2019
Useful Laravel Packages(Andre Madarang)
https://codewithdre.com/useful-laravel-packages
Useful Laravel Packages
A comprehensive video course teaching you how to use the most popular Laravel packages to jump-start your web applications.
Maatwebsite Laravel-Excel document
https://docs.laravel-excel.com/3.1/imports/collection.html
Importing to collections
The easiest way to start an import is to create a custom import class. We'll use a user import as example.
Create a new class called UsersImport in app/Imports:
namespace App\Imports;
use App\User;
use Illuminate\Support\Collection;
use Maatwebsite\Excel\Concerns\ToCollection;
class UsersImport implements ToCollection
{
public function collection(Collection $rows)
{
foreach ($rows as $row)
{
User::create([
'name' => $row[0],
]);
}
}
}
Importing to collections
The easiest way to start an import is to create a custom import class. We'll use a user import as example.
Create a new class called UsersImport in app/Imports:
namespace App\Imports;
use App\User;
use Illuminate\Support\Collection;
use Maatwebsite\Excel\Concerns\ToCollection;
class UsersImport implements ToCollection
{
public function collection(Collection $rows)
{
foreach ($rows as $row)
{
User::create([
'name' => $row[0],
]);
}
}
}
Thursday, October 24, 2019
Implement analytics google
https://analytics.google.com/analytics/web/?authuser=0#/provision
1. Sign up for Google Analytics
2. Add tracking code
3. Learn about your audience
https://la-solution.net result
1. Sign up for Google Analytics
2. Add tracking code
3. Learn about your audience
https://la-solution.net result
Thursday, October 17, 2019
Looking for Freelance
Looking for Freelance / Startup programmer for various project of website and mobile apps. Work place will provide FOC, will have long term project. Interested please pm me 0194103398 (Derric Ooi)
Tuesday, October 15, 2019
Full Stack Web Developer
I'm reaching out to you for an exciting career opportunity with Sparksoft.
We are expanding with strides and thus require talents to join us. We felt that your experience and expertise are able to help our company grow. If you are keen to join our rapidly growing team, please do let me know your availability for an exploratory chat over the phone or email us at jacey.woon@sparksoft.co.
More information at company website: https://www.sparksoft.co/
We wish you a great day ahead! :)
Jacey Woon
HR Executive
We are expanding with strides and thus require talents to join us. We felt that your experience and expertise are able to help our company grow. If you are keen to join our rapidly growing team, please do let me know your availability for an exploratory chat over the phone or email us at jacey.woon@sparksoft.co.
More information at company website: https://www.sparksoft.co/
We wish you a great day ahead! :)
Jacey Woon
HR Executive
Wednesday, October 9, 2019
Subscribe to:
Posts (Atom)