Laravel - Create Blog and Admin Panel | Create Post, Tag & Category Forms #6

preview_player
Показать описание
Create Best Blog and Admin Panel with Laravel. Create Forms for Post, tag and Category on Admin Side

--- FOLLOW ME ---

Subscribe for New Releases!

(ask me questions!)

--- QUESTIONS? ---

Leave a comment below and I or someone else can help you.
For quick questions you may also want to ask me on Twitter, I respond almost immediately.

Thanks for all your support!

LARAVEL 5.4 Tutorial | Cara Instal LARAVEL 5,4 dari awal Part 1 | Bitfumes

Laravel 5.4 Tutorial | Come installare laravel 5,4 da zero Parte 1 | Bitfumes

-~-~~-~~~-~~-~-
Please watch: "Laravel 5.4 Tutorial | Email From Server (Godaddy) #3 | Part 26 | Bitfumes"
-~-~~-~~~-~~-~-
Рекомендации по теме
Комментарии
Автор

Excellent!!! I'm just looking such a quality tutorials.. thanks

shezz
Автор

Hi!
First of all, Thanks for making such helpful tutorial series..

Question: For every side bar links (Category, Post, Tags, etc) page is refreshed. How I can implement it so that only main-content section will be loaded..?? I Think we could use AJAX for it.. but I m beginner so can't figure it how to make that work..
Can you please help me out for this?
Also all the submit actions must be done using AJAX (so that complete Dashboard will not get reloaded).

Thanks in Advance!!

AkshayBhagat
Автор

why did you create a file for each option tag, post and category ??

denisdev
Автор

The editor is not showing all options :( ?? What will do.. ?

suchithraaa
Автор

Suppose i want to insert tag = red, yellow, green
in my database tag table already exits = Red.
so i want to say that if the tag already exists in my database then sync it, if not in database then create it

This is my Store method

$tags = $request->get('tags');
$tagList = explode(", ", $tags);
// Loop through the tag array that we just created
foreach ($tagList as $tags) {
// Get any existing tags
$tag = Tag::where('title', '=', $tags)->first();
// If the tag exists, sync it, otherwise create it
if ($tag != null) {

} else {
$tag = new Tag();

$tag->title = $tags;
$tag->slug = str::slug($tags);

$tag->save();


}
}

aryanraj
Автор

Hi. I cannot get wysihtml5 editor toolbox. It does not shown.

komptechnika
Автор

sir my wysihtml5 editor toolbox is no tworking correctly according to you . i am following your tutorial as you are working i am also working like you but not working code

hamzaaltaf
Автор

Not Showing Text Editing Options Pls Help..

AVIKKC