Upload Data in Laravel Using SummerNote Editor with Image

Поделиться
HTML-код
  • Опубликовано: 31 май 2023
  • #summernotelaravel
    Support This Channel :
    Join this channel to get access to perks:
    / @webtechknowledge
    Your support will be really appreciated.
    Thanks For Watching.
    I hope This video was helpful. If you have any questions then let me know in the comment section.
    Best of luck
    #webtechknowledge
    You can connect with me with the given links below:
    Facebook Link: / yaminshakil07
    Instagram Link: / yamin_shakil
    Twitter Link: / yaheashakil

Комментарии • 12

  • @WebTechKnowledge
    @WebTechKnowledge  Год назад +3

    The Code :
    $dom = new \DomDocument();
    $dom->loadHtml($description, LIBXML_HTML_NOIMPLIED | LIBXML_HTML_NODEFDTD);
    $imageFile = $dom->getElementsByTagName('imageFile');

    foreach($imageFile as $item => $image)
    {
    $data = $img->getAttribute('src');
    list($type, $data) = explode(';', $data);
    list(, $data) = explode(',', $data);
    $imgeData = base64_decode($data);
    $image_name= "/upload/" . time().$item.'.png';
    $path = public_path() . $image_name;
    file_put_contents($path, $imgeData);

    $image->removeAttribute('src');
    $image->setAttribute('src', $image_name);
    }

    $description = $dom->saveHTML();

  • @DevObinna
    @DevObinna Год назад +1

    Love the video. Thank you very much!!

  • @plamedipindi7820
    @plamedipindi7820 Год назад

    It's was amazing

  • @tamratteshome2001
    @tamratteshome2001 Год назад

    very educational as always

  • @user-ze4zj7li1e
    @user-ze4zj7li1e Год назад

    Thank you

  • @rezwansaki
    @rezwansaki 2 месяца назад

    Thanks!! but unicode (Bangla) text not shown correctly. It shows in database like 'à¦'.

  • @happyece
    @happyece 4 месяца назад

    DomDocument::loadhtml function cannot be safely used for sanitizing HTML 5.

  • @DevObinna
    @DevObinna Год назад

    You've not twitter on your Twitter page...

  • @tamratteshome2001
    @tamratteshome2001 Год назад

    please please make one complete real life project which probably contain more laravel concepts. please please please. I want enroll for your courses but no payment options from my country. please please

    • @ilahazs
      @ilahazs 11 месяцев назад

      same

  • @gelarintechnology2960
    @gelarintechnology2960 7 месяцев назад

    How to update image?