@php if (empty($scholarshipprogram)) { $scholarship_program_id = ''; $scholarship_program_name = ''; $scholarship_program_degree = ''; } else { $scholarship_program_id = $scholarshipprogram->scholarship_program_id; $scholarship_program_name = $scholarshipprogram->scholarship_program_name; $scholarship_program_degree = $scholarshipprogram->scholarship_program_degree; } @endphp @extends('layouts.master') @section('title', 'Scholarship Program Add/Edit') @section('style') @endsection @section('script') @endsection @section('content') @include('layouts.header') {{-- Scholarship Program --}} @include('layouts.title') Scholarship Program Add/Edit @csrf Scholarship Type Name* {{-- Owner* @foreach ($owner as $i => $item) {{ $item->scholarship_program_owner }} @endforeach --}} @php // echo $scholarship_program_degree; $scholarship_program_array = explode(',', $scholarship_program_degree); @endphp Bachelor Master Doctoral Back @include('layouts.footer') @endsection