This file contains hidden or 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
{ | |
"openapi": "3.0.1", | |
"info": { | |
"title": "DEMO API", | |
"description": "Api Documentation for DEMO API Project", | |
"termsOfService": "http://swagger.io/terms/", | |
"license": { | |
"name": "Apache 2.0", | |
"url": "http://www.apache.org/licenses/LICENSE-2.0.html" | |
}, |
This file contains hidden or 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
// Superadmin | |
User::create([ | |
'name' => 'Author', | |
'email' => '[email protected]', | |
'password' => Hash::make('authortamvan'), | |
'role' => 'superadmin', | |
'number_phone' => '085865721251' | |
]); | |
// General User |
This file contains hidden or 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
<!DOCTYPE html> | |
<html> | |
<head> | |
<title> | |
@if($domain->stepper_domain->custome->title) | |
{{ $domain->stepper_domain->custome->title }} | |
@else | |
Welcome to the Wedding of {{ ucfirst($domain->stepper_domain->custome->change_name ? $data->nick_female : $data->nick_male) }} & {{ ucfirst($domain->stepper_domain->custome->change_name ? $data->nick_male : $data->nick_female) }} – {{ ucfirst($domain->stepper_domain->kota) }}, {{\Carbon\Carbon::parse($domain->stepper_domain->waktu)->format('d F Y')}} | |
@endif | |
</title> |
NewerOlder