This tutorial covered some initial steps in displaying different flash message styles in your Laravel 5 apps. First Step: Creating Flash Message in the Controller public function store(OfficeRequest $request) { Office::create($request->all()); \Session::flash(‘flash_message’,’Office successfully added.’); //<–FLASH MESSAGE return redirect(‘offices’); } public function store(OfficeRequest $request) { Office::create($request->all()); \Session::flash(‘flash_message’,’Office successfully added.’); //<–FLASH MESSAGE […]
Laravel 5
Silverbux released a new package that we can use to create an admin backend instantly using Laravel 5 and AngularJS! This package is built using AdminLTE. If you’re using AdminLTE, you’re gonna love the package! Laravel 5 and AngularJs You can simple download this package from below given link and […]