Getting started:
Related tutorials:
Getting started:
Related tutorials:
| <a class="btn btn-outline-secondary" onclick=" | |
| var result = confirm('Are you sure you wish to delete this project?'); | |
| if (result) { | |
| event.preventDefault(); | |
| document.getElementById('delete-form').submit(); | |
| }" | |
| >Delete</a> | |
| <form id="delete-form" action="{{ route('companies.destroy', [$company->id]) }}" method="POST" style="display: none;"> | |
| <input type="hidden" name="_method" value="delete"> | |
| {{ csrf_field() }} |
| @if(isset($errors)&&count(errors) > 0) | |
| <div class="alert alert-dismissible alert-danger fade show"> | |
| <button type="button" class="close" data-dismiss="alter" aria-label="Close"> | |
| <span aria-hidden="true">×</span> | |
| </button> | |
| @foreach($errors->all() as $error) | |
| <li> | |
| <strong>{!! $error !!}</strong> | |
| </li> | |
| @endforeach |
| public class JavaBasic { | |
| /** | |
| * @param args the command line arguments | |
| */ | |
| public static void main(String[] args) { | |
| Scanner input = new Scanner(System.in); | |
| int num; | |
| System.out.println("Enter Any Number: "); | |
| num = input.nextInt(); |
| # CREATED BY BEN O'SULLIVAN / BIGBENO37 (GITHUB.COM/BIGBENO37) | |
| # LICENSED UNDER CREATIVE COMMONS 'Attribution 4.0 International' LICENSE | |
| # https://creativecommons.org/licenses/by/4.0/ | |
| # FEEL FREE TO USE AND ADAPT THIS SCRIPT IN COMMERCIAL AND NON COMMERICAL PRODUCTS | |
| # AS LONG AS PROPER ACCREDITATION IS GIVEN | |
| # VARIABLES | |
| echo -e "\x1B[01;95mWhat would you like to name your Laravel project?\x1B[0m" | |
| read LARAVEL_PROJECT_NAME |