<?php

Admin::model(\App\Rent_Department::class)->title('')->with()->filters(function ()
{

})->columns(function ()
{
    Column::string('name', 'Imię i Nazwisko');
    Column::string('function', 'Funkcja');
    Column::string('phone', 'Telefon');
    Column::string('email', 'Adres e-mail');
    // Column::string('sort', 'Kolejność');
    Column::image('image', 'Foto');

})->form(function ()
{
	FormItem::text('name', 'Imię i Nazwisko');
	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']);
 	FormItem::image('image', 'Photo');
});