《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,
    ];
});

......................想了解更多请下载附件。

文件列表(部分)

名称 大小 修改日期
ajax.php0.19 KB2015-08-20
reqxml.php0.16 KB2015-08-20
animateManage.js1.83 KB2015-08-20
ContentState.js0.88 KB2015-08-20
jquery.js71.88 KB2015-08-20
strLen.js0.63 KB2015-08-20
index.html0.51 KB2015-08-20
index.html1.65 KB2015-08-20
index.html0.91 KB2015-08-20
index.html0.93 KB2015-08-20
index.html1.14 KB2015-08-20
index.html0.38 KB2015-08-20
index.html0.56 KB2015-08-20
index.html0.40 KB2015-08-20
index.html0.39 KB2015-08-20
index.html0.74 KB2015-08-20
index.html1.52 KB2015-08-20
index.html0.48 KB2015-08-20
index.html0.70 KB2015-08-20
index.html0.44 KB2015-08-20
index.html0.45 KB2015-08-20
index.html0.40 KB2015-08-20
index.html0.43 KB2015-08-20
index.html0.44 KB2015-08-20
index.html0.60 KB2015-08-20
index.html0.52 KB2015-08-20
index.html0.76 KB2015-08-20
index.html0.89 KB2015-08-20
index.html0.58 KB2015-08-20
index.html0.50 KB2015-08-20

立即下载

相关下载

[《Laravel 入门教程》的源代码] 此项目是《Laravel 入门教程》的源代码。 Laravel是一个具有表达力,语法的Web应用程序框架。 我们认为,发展必须是一种令人愉快的,富有创造力的经历,才能真正实现。 Laravel试图通过减轻大多数Web项目中使用的常见任务来减轻开发的痛苦。 Laravel易于访问,但功能强大,可提供大型,强大的应用程序所需的强大工具。 出色的控制容器版本,富有表现力的移植系统以及紧密集成的单元测试支持,为您提供了构建任务所需的任何应用程序所需的工具...........了解详情请下载附件。

评论列表 共有 0 条评论

暂无评论

微信捐赠

微信扫一扫体验

立即
上传
发表
评论
返回
顶部