文件名称:rest-api:使用Laravel 8资源的REST API
文件大小:91KB
文件格式:ZIP
更新时间:2024-03-26 10:24:42
PHP
REST API(Laravel) 这是使用常用的Web应用程序框架创建的REST API。 快速开始 # Install dependencies composer install # Run migrations php artisan migrate # Seed data php artisan db:seed # Generate application key php artisan key:generate 终点 分类目录 列出所有带有链接和元的类别 GET api/v1/categories 列出单个类别 GET api/v1/categories/{id} 添加类别 POST api/v1/categories name 更新类别 PUT api/v1/categories/{id} name 删除类别 DELETE api/v1/categories/{id} 帖子
【文件预览】:
rest-api-master
----.gitignore(191B)
----app()
--------Providers()
--------Exceptions()
--------Http()
--------Console()
--------Models()
----.env.example(811B)
----bootstrap()
--------app.php(2KB)
--------cache()
----package.json(473B)
----resources()
--------lang()
--------js()
--------views()
--------css()
----server.php(563B)
----storage()
--------app()
--------framework()
--------logs()
----.styleci.yml(181B)
----public()
--------.htaccess(603B)
--------robots.txt(24B)
--------index.php(2KB)
--------favicon.ico(0B)
--------web.config(1KB)
----composer.json(2KB)
----composer.lock(262KB)
----README.md(1KB)
----phpunit.xml(1KB)
----tests()
--------TestCase.php(163B)
--------Unit()
--------Feature()
--------CreatesApplication.php(380B)
----config()
--------database.php(5KB)
--------services.php(950B)
--------session.php(7KB)
--------cache.php(3KB)
--------auth.php(4KB)
--------cors.php(846B)
--------app.php(9KB)
--------hashing.php(2KB)
--------mail.php(3KB)
--------logging.php(3KB)
--------broadcasting.php(2KB)
--------filesystems.php(2KB)
--------view.php(1KB)
--------queue.php(3KB)
----artisan(2KB)
----database()
--------.gitignore(26B)
--------seeders()
--------factories()
--------migrations()
----routes()
--------console.php(592B)
--------channels.php(558B)
--------web.php(492B)
--------api.php(875B)
----webpack.mix.js(559B)
----.gitattributes(111B)
----.editorconfig(220B)