Admin panel Setup : #1 Laravel Vue Admin

แชร์
ฝัง
  • เผยแพร่เมื่อ 13 ธ.ค. 2024

ความคิดเห็น • 39

  • @pyongits
    @pyongits 4 ปีที่แล้ว

    You just earned a new subscriber.

  • @ngoccantech820
    @ngoccantech820 2 ปีที่แล้ว

    When I downloaded your project and ran composer install, it gave me a php version incompatibility error. Way1: i added php8.0 to composer.json, Way2:i added --ignore-platform-reqs to composer install command also failed. Can you update the project again?

  • @nikita-grishchenkov
    @nikita-grishchenkov 4 ปีที่แล้ว +2

    thx u, I'm not fired because of u, and even get encouragement

  • @md.sohanurrahaman1999
    @md.sohanurrahaman1999 4 ปีที่แล้ว

    I get this error in console . admin route is empty in my case for this .
    app.js:41894 [Vue warn]: Unknown custom element: - did you register the component correctly? For recursive components, make sure to provide the "name" option.

  • @andresfelipegonzalezrojas7136
    @andresfelipegonzalezrojas7136 4 ปีที่แล้ว

    Hello, an error is appearing after the configuration of Vuetiyfy: "Error in beforeCreate hook:" Error: Vuetify is not properly initialized ", and I have followed the steps of your installation, the only difference is that it is running under Docker, you can run me help?

  • @adam192021
    @adam192021 5 ปีที่แล้ว

    The BEST as always!

  • @irzafaikar2092
    @irzafaikar2092 3 ปีที่แล้ว

    Sir, is it legal to remove or hide copyright section in the template footer like coreui?

    • @WebDevMatics
      @WebDevMatics  3 ปีที่แล้ว

      You have to check their website if they mentioned it is under MIT license then you can do anything.

  • @ngoccantech820
    @ngoccantech820 2 ปีที่แล้ว

    ありがとうございました!

  • @shahzad_1061
    @shahzad_1061 4 ปีที่แล้ว

    Hi, I have clone your repo from github the link you have shared and install all dependencies but when i run php artisan serve the server started but when i visit 127.0.0.1:8000/admin It display nothing? can you please help me out on this I will appreciate you

  • @siliconslice
    @siliconslice 5 ปีที่แล้ว +2

    Route::any( uri: '/admin/{any?}', action: 'AdminController@index')->where(name: 'any', expression: '.*')->middleware(middleware: 'auth');
    Gives - an error:
    In web.php line 22:
    syntax error, unexpected ':', expecting ',' or ')'
    Then I had to work with:
    // Route::any('/admin/{any?}', 'AdminController@index')->where('any', '.*')->middleware('auth');
    What happened!?

    • @WebDevMatics
      @WebDevMatics  5 ปีที่แล้ว

      Remove uri: from above line

    • @WebDevMatics
      @WebDevMatics  5 ปีที่แล้ว

      From where you learnt this syntax? This is not how we define route in laravel refer to code on github

    • @siliconslice
      @siliconslice 5 ปีที่แล้ว

      :) , I know, I thought 5.7 has some more ways, like that. Thanks for your reply.

  • @ayoubhabbou4303
    @ayoubhabbou4303 4 ปีที่แล้ว

    Which laravel version are you using in this project ?

  • @daffaquraisy9175
    @daffaquraisy9175 5 ปีที่แล้ว

    Um, im new with vue, i wanted to run this to see the admin dashboard, but how i run it ?, When i use php artisan serve and access the url 'localhost:8000/admin' it return nothing, i just wanted to see the admin panel, can you help me ? 😅

    • @samikaranadhikari9739
      @samikaranadhikari9739 4 ปีที่แล้ว

      "php artisan serve" is not only enough to run through 8000 port. Run: "php artisan serve --port=8000". Note: don't forget to run apache server before that :)

    • @shahzad_1061
      @shahzad_1061 4 ปีที่แล้ว

      @@samikaranadhikari9739 I am facing same problem? when i visit 127.0.0.1:8000/admin It display nothing? I have clone repo from github the link above shared? I need help please..

  • @davidespigolon8170
    @davidespigolon8170 4 ปีที่แล้ว

    can you upgrade to laravel 8 with fortify?

    • @WebDevMatics
      @WebDevMatics  4 ปีที่แล้ว

      Interesting Idea will consider. Thanks

  • @عبدهحاوي
    @عبدهحاوي 5 ปีที่แล้ว

    how to add pa (php artisan) to command line?

    • @joshua-afk
      @joshua-afk 5 ปีที่แล้ว

      Navigate to your "Laravel Project" in command line. You can't use "artisan commands" outside laravel project.

  • @47Lancelot
    @47Lancelot 5 ปีที่แล้ว

    lol I made the same project separately for my new job.. laravel 6, spatie, vue, vuetify, vue router in SPA way :D im still going to watch your videos just in case I've missed smthing

  • @KushanShanuka
    @KushanShanuka 5 ปีที่แล้ว

    how to use spatie permission with vue spa

    • @WebDevMatics
      @WebDevMatics  5 ปีที่แล้ว

      Follow this series th-cam.com/play/PLzz9vf6075V25O3jAzvBrU-k4PscUWoLi.html

  • @jocluis100
    @jocluis100 5 ปีที่แล้ว +1

    hello!, excuse me, how can I make login/register in this project using vuetify ? TxU.

    • @TahirBhai
      @TahirBhai 5 ปีที่แล้ว

      Good question, he just skipped that part, I don't know why but he should first make video on that then go to the dashboard thing. I think he deliberately skipped that because it might have some complex logic so he is skipping it.

    • @LorenzoBeltrame
      @LorenzoBeltrame 5 ปีที่แล้ว

      Yes I agree, would love to see a simple way to signup / login from frontend, there are several tutorials around the web but all add complexities like managing state via vuex store, jwt authentication and saving user in local storage etc. I think by still leveraging the session and issuing ajax calls to regular auth scaffold routes might be the way to go. @WebDevMatics would add this for us?

    • @WebDevMatics
      @WebDevMatics  5 ปีที่แล้ว

      @@LorenzoBeltrame I have already created that here th-cam.com/video/5alYl63tXL8/w-d-xo.html

    • @WebDevMatics
      @WebDevMatics  5 ปีที่แล้ว

      @@TahirBhai This playlist got what you want th-cam.com/video/5alYl63tXL8/w-d-xo.html

  • @reaganr1516
    @reaganr1516 5 ปีที่แล้ว

    Can you please add laravel-websockets and work with it?

  • @asadi211
    @asadi211 3 ปีที่แล้ว

    why Indian people does not pronounce correctly :=> ex: Finish != Finis ????

    • @WebDevMatics
      @WebDevMatics  3 ปีที่แล้ว +1

      Working on it bro, btw I am not Indian

  • @nabeeltahir6013
    @nabeeltahir6013 5 ปีที่แล้ว

    Laravel vue food delivery app

  • @wayanwidiarsana9241
    @wayanwidiarsana9241 4 ปีที่แล้ว

    cant teach