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
| Forgot password: | |
| 1. click forgot password | |
| 2. Fill out a form with their email address | |
| 3. prepare a unique token and associate it with the user's account | |
| 4. Send an email with a unique link back to our site that confirms email ownership | |
| 5. Link back to website, confirm the token, and set a new password. | |
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
| <template> | |
| <div> | |
| <div> | |
| <h2>Search and add a marker</h2> | |
| <label> | |
| <gmap-autocomplete | |
| @place_changed="setPlace"/> | |
| </label> | |
| <br> | |
| </div> |
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
| <template> | |
| <div> | |
| <l-map style="height: 350px" | |
| :zoom="zoom" | |
| :center="center" | |
| @click="handleClick" | |
| @ready="ready"> | |
| <l-tile-layer :url="url"/> | |
| <l-marker :lat-lng="markerLatLng"/> | |
| </l-map> |
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
| <TimePicker id="endTime" | |
| v-model="formData.end_time"/> |
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
| <VueMultiSelect :options="beneficiaries" | |
| placeholder="दर्ता समूह/व्यक्ति छान्नुहोस्" | |
| v-model="formData.recipients"/> |
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
| <template> | |
| <VueTextEditor v-model="formData.content"/> | |
| </template> |
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
| <VueTagInput v-model="formData.metadata.amenities" | |
| :default-tags="amenitiesList" | |
| tag-placeholder="Add this as new amenity" | |
| placeholder="Search or add a amenity"/> |
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
| // Old | |
| var Meal = function(food){ | |
| this.food = food | |
| } | |
| Mean.prototype.eat = function(){ | |
| return 'pizza' | |
| } | |
| // New |
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
| <?php | |
| namespace App\SOSC\Repositories; | |
| use Exception; | |
| use Illuminate\Contracts\Foundation\Application; | |
| use Illuminate\Database\Eloquent\Model; | |
| use Illuminate\Support\Collection; | |
| /** |
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
| <?php | |
| namespace App\Http\Controllers\Api; | |
| use App\Http\Controllers\Controller; | |
| use Illuminate\Http\Request; | |
| class AuthController extends Controller | |
| { | |
| /** |