<?php

Admin::model(\App\Contact::class)->title('')->with()->filters(function ()
{

})->columns(function ()
{
    Column::string('m1', 'Oddział M1');
    Column::string('phone', 'Telefon');
    Column::string('email', 'Adres email');
    // Column::string('sort', 'Kolejność wyświetlania');

})->form(function ()
{
    FormItem::text('m1', 'Odział M1');
    FormItem::text('function', 'Funkcja');
    FormItem::text('phone', 'Telefon');
    FormItem::text('email', 'Adres email');
 	// FormItem::select('sort', 'Kolejność')->enum(['1','2','3','4','5','6','7','8','9']);
});