-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9c38b3c
commit 79348bb
Showing
11 changed files
with
153 additions
and
7 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace Blumilk\Website\Http\Controllers; | ||
|
||
use Illuminate\Contracts\View\Factory; | ||
use Illuminate\Contracts\View\View; | ||
|
||
class AboutController extends Controller | ||
{ | ||
public function __invoke(Factory $factory): View | ||
{ | ||
return $factory->make("about"); | ||
} | ||
} |
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,16 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace Blumilk\Website\Http\Controllers; | ||
|
||
use Illuminate\Contracts\View\Factory; | ||
use Illuminate\Contracts\View\View; | ||
|
||
class CareerController extends Controller | ||
{ | ||
public function __invoke(Factory $factory): View | ||
{ | ||
return $factory->make("career"); | ||
} | ||
} |
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,21 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace Blumilk\Website\Http\Controllers; | ||
|
||
use Illuminate\Contracts\View\Factory; | ||
use Illuminate\Contracts\View\View; | ||
|
||
class CaseStudiesController extends Controller | ||
{ | ||
public function index(Factory $factory): View | ||
{ | ||
return $factory->make("case_studies"); | ||
} | ||
|
||
public function get(Factory $factory, string $slug): View | ||
{ | ||
return $factory->make("case_study"); | ||
} | ||
} |
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,21 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace Blumilk\Website\Http\Controllers; | ||
|
||
use Illuminate\Contracts\View\Factory; | ||
use Illuminate\Contracts\View\View; | ||
|
||
class EventsController extends Controller | ||
{ | ||
public function index(Factory $factory): View | ||
{ | ||
return $factory->make("events"); | ||
} | ||
|
||
public function get(Factory $factory, string $slug): View | ||
{ | ||
return $factory->make("event"); | ||
} | ||
} |
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,16 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace Blumilk\Website\Http\Controllers; | ||
|
||
use Illuminate\Contracts\View\Factory; | ||
use Illuminate\Contracts\View\View; | ||
|
||
class LegalController extends Controller | ||
{ | ||
public function __invoke(Factory $factory): View | ||
{ | ||
return $factory->make("legal"); | ||
} | ||
} |
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,16 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace Blumilk\Website\Http\Controllers; | ||
|
||
use Illuminate\Contracts\View\Factory; | ||
use Illuminate\Contracts\View\View; | ||
|
||
class MeetupsController extends Controller | ||
{ | ||
public function __invoke(Factory $factory): View | ||
{ | ||
return $factory->make("meetups"); | ||
} | ||
} |
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,16 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace Blumilk\Website\Http\Controllers; | ||
|
||
use Illuminate\Contracts\View\Factory; | ||
use Illuminate\Contracts\View\View; | ||
|
||
class PartnersController extends Controller | ||
{ | ||
public function __invoke(Factory $factory): View | ||
{ | ||
return $factory->make("partners"); | ||
} | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
@extends("layout.app") | ||
|
||
@section("content") | ||
office@blumik.pl | ||
office@blumilk.pl | ||
@endsection |
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