《Laravel 入门教程》的源代码
此项目是《Laravel 入门教程》的源代码。
Laravel是一个具有表达力,语法的Web应用程序框架。 我们认为,发展必须是一种令人愉快的,富有创造力的经历,才能真正实现。 Laravel试图通过减轻大多数Web项目中使用的常见任务来减轻开发的痛苦。
Laravel易于访问,但功能强大,可提供大型,强大的应用程序所需的强大工具。 出色的控制容器版本,富有表现力的移植系统以及紧密集成的单元测试支持,为您提供了构建任务所需的任何应用程序所需的工具...........了解详情请下载附件。
应用介绍
此项目是《Laravel 入门教程》的源代码。
下面展示一小段代码:
<?php
/*
|
| Here you may define all of your model factories. Model factories give
| you a convenient way to create models for testing and seeding your
| database. Just tell the factory how a default model should look.
|
*/
$factory->define(App\Models\User::class, function (Faker\Generator $faker) {
$date_time = $faker->date . ' ' . $faker->time;
static $password;
return [
'name' => $faker->name,
'email' => $faker->safeEmail,
'is_admin' => false,
'activated' => true,
'password' => $password ?: $password = bcrypt('secret'),
'remember_token' => str_random(10),
'created_at' => $date_time,
'updated_at' => $date_time,
];
});
$factory->define(App\Models\Status::class, function (Faker\Generator $faker) {
$date_time = $faker->date . ' ' . $faker->time;
return [
'content' => $faker->text(),
'created_at' => $date_time,
'updated_at' => $date_time,
];
});
......................想了解更多请下载附件。
©版权声明:本文内容由互联网用户自发贡献,版权归原创作者所有,本站不拥有所有权,也不承担相关法律责任。如果您发现本站中有涉嫌抄袭的内容,欢迎发送邮件至: www_apollocode_net@163.com 进行举报,并提供相关证据,一经查实,本站将立刻删除涉嫌侵权内容。
转载请注明出处: apollocode » 《Laravel 入门教程》的源代码
文件列表(部分)
名称 | 大小 | 修改日期 |
---|---|---|
ajax.php | 0.19 KB | 2015-08-20 |
reqxml.php | 0.16 KB | 2015-08-20 |
animateManage.js | 1.83 KB | 2015-08-20 |
ContentState.js | 0.88 KB | 2015-08-20 |
jquery.js | 71.88 KB | 2015-08-20 |
strLen.js | 0.63 KB | 2015-08-20 |
index.html | 0.51 KB | 2015-08-20 |
index.html | 1.65 KB | 2015-08-20 |
index.html | 0.91 KB | 2015-08-20 |
index.html | 0.93 KB | 2015-08-20 |
index.html | 1.14 KB | 2015-08-20 |
index.html | 0.38 KB | 2015-08-20 |
index.html | 0.56 KB | 2015-08-20 |
index.html | 0.40 KB | 2015-08-20 |
index.html | 0.39 KB | 2015-08-20 |
index.html | 0.74 KB | 2015-08-20 |
index.html | 1.52 KB | 2015-08-20 |
index.html | 0.48 KB | 2015-08-20 |
index.html | 0.70 KB | 2015-08-20 |
index.html | 0.44 KB | 2015-08-20 |
index.html | 0.45 KB | 2015-08-20 |
index.html | 0.40 KB | 2015-08-20 |
index.html | 0.43 KB | 2015-08-20 |
index.html | 0.44 KB | 2015-08-20 |
index.html | 0.60 KB | 2015-08-20 |
index.html | 0.52 KB | 2015-08-20 |
index.html | 0.76 KB | 2015-08-20 |
index.html | 0.89 KB | 2015-08-20 |
index.html | 0.58 KB | 2015-08-20 |
index.html | 0.50 KB | 2015-08-20 |
发表评论 取消回复