12 lines
310 B
PHP
12 lines
310 B
PHP
@extends('customer.layouts.master')
|
|
|
|
@section('content')
|
|
@php( $owners = DB::table('users')->get())
|
|
|
|
<select class="form-control" name="owner_name" id="owner_name">
|
|
@foreach($owners as $contact)
|
|
<option value="{{ $contact->nama }}">{{ $contact->nama }}</option>
|
|
@endforeach
|
|
</select>
|
|
@endsection
|