-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add event in home page and setting up a new set-up for event
- Loading branch information
sharbel93
committed
Nov 11, 2019
1 parent
f5314bd
commit d2f6319
Showing
11 changed files
with
242 additions
and
137 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
37 changes: 37 additions & 0 deletions
37
database/migrations/2019_11_11_060801_add_event_dates_to__events_table.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
<?php | ||
|
||
use Illuminate\Support\Facades\Schema; | ||
use Illuminate\Database\Schema\Blueprint; | ||
use Illuminate\Database\Migrations\Migration; | ||
|
||
class AddEventDatesToEventsTable extends Migration | ||
{ | ||
/** | ||
* Run the migrations. | ||
* | ||
* @return void | ||
*/ | ||
public function up() | ||
{ | ||
Schema::table('events', function (Blueprint $table) { | ||
// add events date | ||
$table->date('start')->after('thumbnail'); | ||
$table->date('end')->after('start'); | ||
$table->string('guest')->after('location'); | ||
$table->string('host')->after('guest'); | ||
}); | ||
} | ||
|
||
/** | ||
* Reverse the migrations. | ||
* | ||
* @return void | ||
*/ | ||
public function down() | ||
{ | ||
Schema::table('events', function (Blueprint $table) { | ||
// | ||
$table->dropColumn('created'); | ||
}); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -210,6 +210,7 @@ | |
|
||
} | ||
|
||
|
||
////////////////theme////////// | ||
|
||
section{ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,7 +20,11 @@ | |
<meta name="description" | ||
content=" <strong>House of Grace Church - Eldoret<strong> was Launched on 16th January 2015. It is located | ||
in Kapsoya, opposite The Noble Hotel,a few meters from the Nairobi – Eldoret Highway."> | ||
<meta name="keywords" content="house of grace eldoret, house of grace, church eldoret, house of grace church | ||
<meta name="keywor205.83ms4.39MBGET manage/posts/{post}web: [email protected] | ||
5 statements were executed7.9ms | ||
select * from `users` where `id` = '1' limit 1 | ||
3.42ms | ||
/vendor/ds" content="house of grace eldoret, house of grace, church eldoret, house of grace church | ||
eldoret, eldoret, church , Kenya, house of grace eldoret kenya"> | ||
<!-- Fonts --> | ||
{{--<link rel="dns-prefetch" href="https://fonts.gstatic.com">--}} | ||
|
@@ -36,6 +40,7 @@ | |
<link rel="stylesheet" href="{{asset('css/bootstrap.min.css')}}"> | ||
<link href="https://fonts.googleapis.com/css?family=Playfair+Display+SC" rel="stylesheet"> | ||
<link href="{{ asset('css/app.css') }}" rel="stylesheet"> | ||
@yield('styles') | ||
<script src="//platform-api.sharethis.com/js/sharethis.js#property=5c10b7c81c98570011922822&product=inline-share-buttons"></script> | ||
<!-- Global Site Tag (gtag.js) - Google Analytics --> | ||
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-128002808-1"></script> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.