当前位置: 首页>>代码示例>>PHP>>正文


PHP Event::firstOrCreate方法代码示例

本文整理汇总了PHP中app\Event::firstOrCreate方法的典型用法代码示例。如果您正苦于以下问题:PHP Event::firstOrCreate方法的具体用法?PHP Event::firstOrCreate怎么用?PHP Event::firstOrCreate使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在app\Event的用法示例。


在下文中一共展示了Event::firstOrCreate方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: run

    /**
     * Run the database seeds.
     *
     * @return void
     */
    public function run()
    {
        Event::firstOrCreate(['tagline' => 'Our very first event. Everyone is welcome to come along.', 'location_id' => 1, 'price' => 5.0, 'featured_image' => '/images/sample_images/event_photos/event1.jpg', 'start_datetime' => '2016:01:01 09:00:00', 'end_datetime' => '2016:01:03 22:00:00', 'title' => 'Event Number 1', 'description' => '<p>The key to more success is to have a lot of pillows. The ladies always say Khaled you smell good, I use no cologne. Cocoa butter is the key. Celebrate success right, the only way, apple. You see that bamboo behind me though, you see that bamboo? Ain’t nothin’ like bamboo. Give thanks to the most high. They will try to close the door on you, just open it. Celebrate success right, the only way, apple. Surround yourself with angels, positive energy, beautiful people, beautiful souls, clean heart, angel.</p>

                <p>Don’t ever play yourself. They don’t want us to eat. The key to more success is to have a lot of pillows. Bless up. They never said winning was easy. Some people can’t handle success, I can. To succeed you must believe. Life is what you make it, so let’s make it. Egg whites, turkey sausage, wheat toast, water. Of course they don’t want us to eat our breakfast, so we are going to enjoy our breakfast. A major key, never panic. Don’t panic, when it gets crazy and rough, don’t panic, stay calm. In life there will be road blocks but we will over come it.</p>

                <p>You see that bamboo behind me though, you see that bamboo? Ain’t nothin’ like bamboo. In life there will be road blocks but we will over come it. Hammock talk come soon. Put it this way, it took me twenty five years to get these plants, twenty five years of blood sweat and tears, and I’m never giving up, I’m just getting started. Congratulations, you played yourself. Special cloth alert. Hammock talk come soon.</p>

                <p>You smart, you loyal, you a genius. A major key, never panic. Don’t panic, when it gets crazy and rough, don’t panic, stay calm. The key to more success is to have a lot of pillows. You see that bamboo behind me though, you see that bamboo? Ain’t nothin’ like bamboo. Find peace, life is like a water fall, you’ve gotta flow. Another one. To succeed you must believe. Life is what you make it, so let’s make it. Give thanks to the most high. Give thanks to the most high. We don’t see them, we will never see them.</p>']);
        Event::firstOrCreate(['tagline' => 'Our second event. Be sure to bring your friends.', 'location_id' => 5, 'price' => 5.0, 'featured_image' => '/images/sample_images/event_photos/event2.jpg', 'start_datetime' => '2016:02:21 09:30:00', 'end_datetime' => '2016:02:25 15:45:00', 'title' => 'Event the Second', 'description' => '<p>The path of the righteous man is beset on all sides by the iniquities of the selfish and the tyranny of evil men. Blessed is he who, in the name of charity and good will, shepherds the weak through the valley of darkness, for he is truly his brother\'s keeper and the finder of lost children. And I will strike down upon thee with great vengeance and furious anger those who would attempt to poison and destroy My brothers. And you will know My name is the Lord when I lay My vengeance upon thee.</p>']);
        Event::firstOrCreate(['tagline' => 'Our third and final event. Please arrive on time.', 'location_id' => 2, 'price' => 5.0, 'featured_image' => '/images/sample_images/event_photos/event3.jpg', 'start_datetime' => '2016:03:20 12:35:14', 'end_datetime' => '2016:03:21 15:45:00', 'title' => 'The Final Event', 'description' => '<p>Fruitcake dragée cake gummies marshmallow. Pastry sweet dessert cake apple pie. Chocolate cake jelly beans topping chocolate cake pudding. Bear claw topping cookie jelly-o powder powder. Liquorice chocolate cake biscuit gummi bears danish marshmallow apple pie. Muffin pastry carrot cake chocolate bar chocolate cookie fruitcake. Sweet macaroon marzipan jelly sweet gummies gummi bears candy canes chocolate. Ice cream donut jelly beans apple pie muffin cupcake caramels. Danish pie caramels. Sesame snaps lemon drops jelly cake ice cream. Muffin jelly beans pie cake cupcake. Caramels powder soufflé cake dragée biscuit. Dragée tootsie roll oat cake dragée bear claw.</p>']);
    }
开发者ID:TheJokersThief,项目名称:Eve,代码行数:17,代码来源:EventsTableSeeder.php

示例2: seed

 public static function seed($id, $slug, $name)
 {
     $response = Curl::get('http://api.football-data.org/alpha/teams/' . $id . '/fixtures/?venue=home&timeFrame=n28');
     if (!empty($response)) {
         $fixtures = json_decode($response)->fixtures;
         foreach ($fixtures as $fixture) {
             $end_time = Carbon::parse($fixture->date);
             $end_time->minute = 90;
             $venue = array('slug' => $slug, 'venue_name' => $name);
             $venue = Venue::firstOrCreate($venue);
             $event = array('event_name' => $fixture->homeTeamName . ' vs ' . $fixture->awayTeamName, 'start_time' => Carbon::parse($fixture->date), 'end_time' => $end_time, 'duration' => 90, 'venue_id' => $venue->id);
             $event = Event::firstOrCreate($event);
         }
         return;
     }
 }
开发者ID:CharlieMCR,项目名称:tramatic,代码行数:16,代码来源:apicalls.php


注:本文中的app\Event::firstOrCreate方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。