本文整理汇总了PHP中Social::create方法的典型用法代码示例。如果您正苦于以下问题:PHP Social::create方法的具体用法?PHP Social::create怎么用?PHP Social::create使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Social
的用法示例。
在下文中一共展示了Social::create方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: run
public function run()
{
$faker = Faker::create();
foreach (range(1, 10) as $index) {
Social::create([]);
}
}
示例2: store
/**
* Store a newly created social in storage.
*
* @return Response
*/
public function store()
{
$validator = Validator::make($data = Input::all(), Social::$rules);
if ($validator->fails()) {
return Redirect::back()->withErrors($validator)->withInput();
}
Social::create($data);
return Redirect::route('socials.index');
}
示例3: up
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('socials', function (Blueprint $table) {
$table->increments('id');
$table->string('name');
$table->text('link');
$table->string('css');
$table->boolean('online')->default(0);
$table->timestamps();
});
Social::create(['name' => 'facebook', 'link' => 'http://www.facebook.com', 'css' => 'fa fa-facebook', 'online' => 1]);
Social::create(['name' => 'twitter', 'link' => 'http://www.twitter.com', 'css' => 'fa fa-twitter', 'online' => 1]);
}