if you having some advanced level course i am sure will buy your course. Such as Live chat or Infinite scroll . Waiting for it. Your video are easy to understand and well explanation.
Any chance of getting a free coupon? Your course is definitely a key to unlock the potential of aspiring web developers like me, but sadly we can't afford it for now. Hoping for another free coupon please. Thank you Sir so much
The best laravel course I've ever had watched! Thank you so much!. though the course was published 2017 was still able to follow up
The best course I've ever had buyed! Thank you so much!
if you having some advanced level course i am sure will buy your course. Such as Live chat or Infinite scroll . Waiting for it. Your video are easy to understand and well explanation.
thank you Wai SoNg Tan
I ha've paid for one of course and i'm really satisfy. You'are the best man
SOLID CLEAR INFORMATIVE COURSE MUST BUY !!!
This is even better.. Thank you so much, i really needed this for my project.. Thank you
Free exactly?Only introduction video is accessible.How to start?HELP
Thx a lot for free course.
Subscribed.
Thank you!
I will start it asap!
Thank you too !
How did i miss this free offer.Thank you Kati for awesome vids though ,you the man!
thank you too. Watch out for next one.
Where can I buy an advanced Laravel 5.4 eCommerce tutorial, I mean fully functional? also a CRM would be awesome.
thank you for course. i will have so much fun . amazing job
Alex, thank you too !
Than you so much!!
Miss the free coupon. Sad! By the way love your social media tutorial franz. Thanks always. Godbless
Awesome course you made. Thanks mate. I got the course for free. But if I had to pay 10 dollars for it, it would still be cheap as hell.... 👏🏼👏🏼👏🏼
Thank you very much man, you are wonderfull :-)
Thank you too sir
can you give another coupon code for a free offer?
Bro you are doing a good job
Thank you sir
thanks man :) you are the one :)
Thanks Santosh
is all the 124 lectures are free?
YES USE THE LINK AS SOON AS U CAN!! YOU MIGHT NOT BE THE FIRST 100!!
This course was for beginners,will you make something advanced like MIS,CRM, i will definitely buy your course
Thank you David, would think of that soon enough .
I missed this. A thumb up anyway. I'll be happy to pay for it.
anyone who has coupon for this course? I would like to buy this
O no sold out on your 100% discount coupon. damn im to late. Anyway thank you for the great content. love your videos. if you snooze you lose lol
Any chance of getting a free coupon? Your course is definitely a key to unlock the potential of aspiring web developers like me, but sadly we can't afford it for now. Hoping for another free coupon please. Thank you Sir so much
it is not free :(
Image not update and store and display
public function update(Request $request, $id)
{
//
$this->validate($request,[
'title'=>'required',
'category_id'=>'required',
'content'=>'required'
]);
$post= Post::find($id);
if($request->hasFile('image')){
$image = $request->image;
$post_image_name = time().$image->getClientOriginalName();
$image->move('uploads/posts',$post_image_name);
$image->image='uploads/posts'.$post_image_name;
}
$post->title = $request->title;
$post->body = $request->content;
$post->category_id= $request->category_id;
$post->save();
Session::flash('success','posts updated successfully');
return redirect()->route('posts');
}