Member Since 9 Months Ago
3,610 experience to go until the next level!
In case you were wondering, you earn Laracasts experience when you:
Earned once you have completed your first Laracasts lesson.
Earned once you have earned your first 1000 experience points.
Earned when you have been with Laracasts for 1 year.
Earned when you have been with Laracasts for 2 years.
Earned when you have been with Laracasts for 3 years.
Earned when you have been with Laracasts for 4 years.
Earned when you have been with Laracasts for 5 years.
Earned when at least one Laracasts series has been fully completed.
Earned after your first post on the Laracasts forum.
Earned once 100 Laracasts lessons have been completed.
Earned once you receive your first "Best Reply" award on the Laracasts forum.
Earned if you are a paying Laracasts subscriber.
Earned if you have a lifetime subscription to Laracasts.
Earned if you share a link to Laracasts on social media. Please email [email protected] with your username and post URL to be awarded this badge.
Earned once you have achieved 500 forum replies.
Earned once your experience points passes 100,000.
Earned once your experience points hits 10,000.
Earned once 1000 Laracasts lessons have been completed.
Earned once your "Best Reply" award count is 100 or more.
Earned once your experience points passes 1 million.
Earned once your experience points ranks in the top 50 of all Laracasts users.
Earned once your experience points ranks in the top 10 of all Laracasts users.
Started a new Conversation Hot Reload Nuxt On Homestead Not Working
I use homestead with that params in package.json:
"config": {
"nuxt": {
"host": "0.0.0.0",
"port": "3000"
}
},
Hot reloading is not working. After some changes I restarting my nuxt every time...
Do you know the way to fix that?
Started a new Conversation Homestead Laravel + Nuxt.js
I have laravel and nuxt.js (installed in client
folder).
How can I make nuxt work on main domain like testsite.com and laravel work on api.testsite.com?
Started a new Conversation Same Auth Driver On Frontend (api && Vue Js) And Backend (voyager)
Hey guys. I have website that have frontend based on API and server side admin panel (voyager). Currently it uses different auth drivers: jwt (https://github.com/tymondesigns/jwt-auth) for api, session for web. I want to automatically log in to the admin panel when logging in via jwt. Is it possible?
p.s. if i set jwt driver for "web" it throws "Auth driver [jwt] for guard [web] is not defined.". p.s. 2, I can't access to session from other drivers. For example I can't create middleware with
$user = auth()->guard('api')->user()
and attach it to web. It will return null and I don't know why.
Started a new Conversation Don't Load Specific Columns From DB
Hello.
I store attachments directly in database (column with raw binary code).
So when I do $attachment = Attachment::take(20)->get()
it loads all data in variables (with binary code included).
File may have big size and it will put hundreds of megabytes in RAM.
Is there any way to exclude some columns from DB and load it by lazy way, like relations?
For example:
$attachment = Attachment::find(123);
// $attachment->content === null
$attachment->content; // <<BINARY CODE>> (loaded from database)
Started a new Conversation Elegant Way To Wrap Model Into Collection?
I want to work with collections even if data is single model:
So if I do collect($collectionOfModels)
its do nothing = GOOD.
If I do collect($singleModel)
its wraps all model's properties (instead of model) like this:
array:2 [
"id" => 1
"name" => "Alex"
]
But I want this:
array:1 [
array:2 ["id" => 1, "name" => "Alex"],
]
So every time I do that trick:
$collectionOrSingleModel = getData();
if ($collectionOrSingleModel instanceof Model) {
$collectionOrSingleModel = collect([collectionOrSingleModel ]);
}
foreach ($collectionOrSingleModel as $singleModel) {
// ...
}
It works fine but I don't feel good. Is there any better way to do that?
Replied to Get "dirty" Attributes Of Model (even If No Changes)
I probably found the solution (in model code):
protected $touchedProperties = [];
/**
* @param $key
* @param $value
*/
public function setAttribute($key, $value)
{
$this->touchedProperties[$key] = $value;
parent::setAttribute($key, $value);
}
Started a new Conversation Get "dirty" Attributes Of Model (even If No Changes)
I know about getDirty()
method, that gives me properties that been changed (before save()
).
But what if I want to know properties that haven't changed at all (but It was setted)?
For example:
$user = User::where('name', 'Alex')->first(); // ID: 123, NAME: 'Alex', CITY: 'New York' etc...
$user->name = $user->name;
So I want detect that there was try to change 'name' column. Is there any easy way to do that?
Started a new Conversation Sort Collection Hierarchically
I have collection with these properties:
id | name | parent_id
1 | Category2 | null
2 | Element1 | 2
3 | Element3 | 1
4 | Category1 | null
5 | Element4 | 2
6 | Element1 | 1
I want to sort parent categories then its childs.
So in case above I want to receive that result:
id | name | parent_id
1 | Category1 | null
3 | Element3 | 1
6 | Element1 | 1
4 | Category2 | null
5 | Element4 | 2
2 | Element1 | 2
Is there any way to do that by using sort or sortBy methods?
Started a new Conversation Get Model Changes Via GetDirty(), But `name`, Not `id`
I log all my model updatings in database by using this in updating
event of my models:
$originalData = $this->changeable->getOriginal();
$dirtyData = $this->changeable->getDirty();
// save changes of properties in some table...
So, its works fine, but it gives my only ID of changing properties.
For example status_id
was changed, and it will put this in db:
key | old_value | new value
-------------------------------------------------
status_id | 3 | 4
But I want to store name
property of status via relation:
key | old_value | new value
------------------------------------------------------------------
status_id | In progress | Completed
Is there any way to do that?
Started a new Conversation Convert Ids To Models In Request Class?
So I have custom request class that handle my html form.
In request class I have validation rule like: ['users' => 'sometimes|exists:users,id']
.
And in my controller I have:
$users = User::find($customRequest->get('users'));
So in this case I think I have double query for validating (but it's not critical I guess) and user search and I want to get rid of finding users in my controller.
So in my controller I want like this:
function test(CustomRequest $request)
{
$users = $request->get('users'); // array or collection of models (not ids!!)
}
Started a new Conversation Difference Between Sometimes And Nullable Validation Rule?
Is there any difference?
Started a new Conversation Validate Existing File
I have the file that exists in my storage folder.
Is it possible to validate his parameters via laravel validator?
I mean not while uploading it in request.
Started a new Conversation Validate Via Custom Rule From String Rules
For some reason I store validation in database in string column, for example:
id | field | rules
-------------------
1 | first_name | required|bail|max:50
2 | last_name | required|bail|max:70
So when I validate through Laravel validator I load these rules from DB.
But now I need to validate some filelds with custom Rules.
In code I can do that: 'field' => ['required', 'bail', new CustomRule]
.
But I store my rules in DB in varchar column so I cant create Rule instance.
Is it possible to validate through custom Rule class from string rules?
Something like this: 'field' => 'required|bail|max:70|class:App\Rules\CustomRule'