"Class does not exist exception" in Laravel - laravel-5.4

When I'm trying to create a bread for the table p_catogegory in the Voyager Laravel admin theme, it shows this error:
How can I fix this? Here is the bread structure for my table:

i placed the wrong code in model that's why its not working properly

Related

Is there easy way to do login using data from sql?

I stuck with my homework. I need to do make login page using asp.net MVC and data from SQL table. I found alot of tutorials on net but doesnt help because I dont need to make registration page and then login I just need to write some data in sql like for example userName= User1 password: 1234 and with that login on page that I made using MVC. Btw I already connect
mvc and sql using entity framework. Just cant login using data from sql. Help pls.

Migrate SQLite3 database to MySQL in Django

I am developing a website using Django 1.11 and Django-CMS with python3. Initially I used the default database sqlite3, however, now I want it to migrate to mysql. I have found several solutions online like
Solution 1
Solution 2
However, both did not work. For the first solution I got the following error:
AttributeError: 'Page' object has no attribute '_node_cache'
and for the second solution there was this error:
Could not load contenttypes.ContentType(pk=1): (1062, "Duplicate entry 'cms-placeholder' for key 'django_content_type_app_label_model_76bd3d3b_uniq'"
In both examples, I used a empty database and migrated first.
Any help please?
Django's content types get tricky. Try deleting the content of django_content_type from the database after running migrations, but before loading the fixtures:
python manage.py dbshell
DELETE FROM django_content_type;
If it loads successfully, run migrations again to fill in any missing entries in django_content_type. Good luck!

Custom Options not showing when creating order in Magento Admin

I assume this is a magento bug. When I try to place an order via Magento Admin Order Create, the custom options for the product do not show up. However, the custom options works well from the frontend. See image.
How can I resolve this? Thanks for helping out.
It's seems you use customer module
What is the name of the module?

Dynamic php website using CODEIGNITER

My problem is that I have made a PHP page .
It has a button of "add company" that according to my employer should create a table (in database) of a the company with the desired name and also another PHP page should be automatically made that displays the table of that company from the database.
ALL this should be done on click of the add company button.
Have search your similiar question in here?? or have you search that on google??
Maybe this link would help,
Bulit Data Grid with Codeigniter
If you new to php and codeigniter you have to search a lot case here or googling, and don't forget to describe the issue, error notice, or whatever you think the code is wrong you must describe it detail.
Hope this help :-)

RailsTutorial - Testing - What to put for Database.YML for MySQL?

First, thanks for your help.
As a noob, I've been happily chugging along this well-known tutorial:
http://ruby.railstutorial.org/chapters/static-pages#top
and I'm caught in a section where I enter
rspec spec/
where I receive 2 errors. The 2 errors are in the format of
PagesController GET 'home' should be
successful
Failure/Error: Unable to find matching line from backtrace
Mysql2::Error:Unknown database 'xyz.rb'
where "home" is the name of the action/page. The xyz.rb is the arbitrary
database name I have listed under the test section in database.yml. I
have already raked the database.
I'm pretty sure my problem has to do with how I'm not going with the
sqlite3 in the tutorial but instead with mysql2. The resources I have
managed to find only give guidance on what to input for the development
section in database.yml, but not for the rest of the sections like
"test". So, my question is, what exactly does this error mean, how to
fix it, and how should I configure my database.yml file? I tried
entering a file I see in my db folder like schema.rb, but this renders
the same error.
Thank you very much for your help.
You have two options:
Set up another sqlite database, as is default with a new rails application, or
Create another MySQL database, the same way you set up your development database, with a different name (such as test) and use that for testing.
Here's my database.yml file from the Rails Tutorial that uses SQLite for all the databases; you should be able to copy the test section if you decide to go with #1 above.