@extends('layouts.admin') @section('css') @endsection @section('content')

Store OmgSpecial

{{ Form::open(['route' => ['admin.omg-special.store'],'id' => 'omg-special_form', 'method'=>'post']) }} @csrf
{{ Form::select('title_id', array('0' => 'Add New') + $Title, null, ['class' => 'form-select title_select select2', 'id'=>'title_id']) }} {{-- Add new --}}
{{ Form::close() }}

All OmgSpecial

@foreach ($OmgSpecial as $ne) @endforeach
# Title Action
{{$ne->title->title}}
@endsection @section('js') @endsection