Skip to content

Instantly share code, notes, and snippets.

@MaheKarim
Created November 7, 2020 22:55
Show Gist options
  • Save MaheKarim/cf3f3b9b9b075da01899b48d560c4ccd to your computer and use it in GitHub Desktop.
Save MaheKarim/cf3f3b9b9b075da01899b48d560c4ccd to your computer and use it in GitHub Desktop.
<div class="col-lg-3">
<label for="couriertype_id">Select Courier Type<span>*</span></label>
<select class="form-control" name="couriertype_id" id="couriertype_id">
@php($couriertypes = \App\Models\CourierType::all())
@foreach ($couriertypes as $couriertype)
<option {{ ($getquotes->couriertype_id) ? 'selected' : '' }} value="{{ $couriertype->id }}">{{ $couriertype->courier_type_name }} </option>
@endforeach
</select>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment