Hỏi về cách note lại những kiến thức mình biết, nhận được hằng ngày
Nếu bạn làm việc nhiều với trình duyệt thì 1 extension của chrome là 1 lựa chọn không tồi. bạn có thể tham khảo qua https://chrome.google.com/webstore/search/note
hỏi function trong javascript
Bạn có thể tham khảo qua khóa học này ạ. https://awesome-academy.com/khoa-hoc/lap-trinh-web-co-ban
Whoops, looks like something went wrong.
Bạn có thể tham khảo qua doc của laravel. https://laravel.com/docs/5.8/errors
Resource collection trong laravel có phải để format lại data?
When building an API, you may need a transformation layer that sits between your Eloquent models and the JSON responses that are actually returned to your application's users. Laravel's resource classes allow you to expressively and easily transform your models and model collections into JSON.
document của laravel viết vậy. đúng là Resource collection hiểu nôm na là format data nhé
Rewrite URL Laravel
Route::get('{categroy}/{post}',['as'=>'detailtin','uses'=>'PageController@getPost']);
Route::get('{categroy}',['as'=>'category','uses'=>'PageController@getCategory']);
Cho xuống dười cùng của file web.php xem có đk k nhé.
Vấn đề về nuxt auth và middleware vue
Bạn thử dùng hàm nuxtServerInit trong vuex để get thông tin của server như authenticate. sau đó lưu vào state. còn middleware chỉ việc check state từ trong store mà không cần call api.mình nghĩ sẽ giải quyết được vấn đề này.
hỏi về đăng nhập trong laravel
Trong model b thêm hàm này xem sao:
public function getAuthPassword()
{
return $this->tutor_password;
}