How to Pass Value from Model to all the views in Laravel ? with video

It is a bit tricky to pass all the values to the view from the model in laravel. First of all, make controllers and model is a must. I believe you have already done this In controller: View::composer(‘*’, function($views){ $views->with(‘settings’, App\Setting::all()); });   In Views: (according to my video) @foreach($settings as $setting) @if($setting->facebook!=null) <a class=”iconfont-wrapper” … Read moreHow to Pass Value from Model to all the views in Laravel ? with video

Cant Delete File in Laravel? [SOLUTION]

[Q] I am using laravel and while deleting a file in laravel It got error while code is live but worked fine in localhost. Error Looked like this controller is as follow public function destroy($id) { $del=Slider::find($id); if (!empty($del->image)) { $image_path = public_path(“images/slider/{$del->image}”); //File::delete($image_path); unlink($image_path); } $chk=$del->delete(); if($chk){ $data=Slider::get(); Session()->flash(‘msg’,’A Slider has been deleted.’); return … Read moreCant Delete File in Laravel? [SOLUTION]

Be careful when using Facebook! Photos uploaded to Couple Challenge appeared on the porn sites

Under the recently launched Couple Challenge on the popular social network Facebook, photos uploaded by users with their partners have started appearing on various porn sites. According to news agencies, some of the photos uploaded to the Couples Challenge, especially of celebrity couples, have been uploaded on porn sites. Security officials say those who are … Read moreBe careful when using Facebook! Photos uploaded to Couple Challenge appeared on the porn sites

How to recover shift+deleted files and folders in windows?

I accidentally deleted a folder in a desktop which I came to know was very useful to me. I searched in recycle Bin but could not find and I came to know the solution for the problem that I want to share now. 1. First all open command prompt and write this line vssadmin List … Read moreHow to recover shift+deleted files and folders in windows?

HOW TO SHOW IMAGE IN YAJRA DATATABLE COLUMN [SOLUTION]

I have a table where I need to show title, image and option. I have already made a datatable jquery and called the data.  My table is as below. <table class=”table”>      <thead>                                                 <tr>                                                     <th>#</th>                                                   <th>Title</th>                                                     <th>Image</th>                                                     <th>Option</th>                                                 </tr>                                             </thead>                                             <tbody>                                             </tbody>                                         </table>   And … Read moreHOW TO SHOW IMAGE IN YAJRA DATATABLE COLUMN [SOLUTION]

How to implement Yajra Datatable in Laravel ?

Datatable is an excellent pacakage for those who wants to make a normal table interactive. The step to implement the Datatable is as follow. You can also follow the documentation of the laravel https://github.com/yajra/laravel-datatables 1) First of all go to your command prompt and your root folder and hit this command composer require yajra/laravel-datatables-oracle You … Read moreHow to implement Yajra Datatable in Laravel ?