'CADJOB管理画面', 'title_prefix' => '', 'title_postfix' => '|CADJOB管理画面', /* |-------------------------------------------------------------------------- | Logo |-------------------------------------------------------------------------- | | This logo is displayed at the upper left corner of your admin panel. | You can use basic HTML here if you want. The logo has also a mini | variant, used for the mini side bar. Make it 3 letters or so | */ 'logo' => 'CADJOB', 'logo_mini' => 'CAD', /* |-------------------------------------------------------------------------- | Skin Color |-------------------------------------------------------------------------- | | Choose a skin color for your admin panel. The available skin colors: | blue, black, purple, yellow, red, and green. Each skin also has a | ligth variant: blue-light, purple-light, purple-light, etc. | */ 'skin' => 'blue', /* |-------------------------------------------------------------------------- | Layout |-------------------------------------------------------------------------- | | Choose a layout for your admin panel. The available layout options: | null, 'boxed', 'fixed', 'top-nav'. null is the default, top-nav | removes the sidebar and places your menu in the top navbar | */ 'layout' => null, /* |-------------------------------------------------------------------------- | Collapse Sidebar |-------------------------------------------------------------------------- | | Here we choose and option to be able to start with a collapsed side | bar. To adjust your sidebar layout simply set this either true | this is compatible with layouts except top-nav layout option | */ 'collapse_sidebar' => false, /* |-------------------------------------------------------------------------- | URLs |-------------------------------------------------------------------------- | | Register here your dashboard, logout, login and register URLs. The | logout URL automatically sends a POST request in Laravel 5.3 or higher. | You can set the request to a GET or POST with logout_method. | Set register_url to null if you don't want a register link. | */ 'dashboard_url' => 'home', 'logout_url' => 'logout', 'logout_method' => null, 'login_url' => 'login', 'register_url' => 'register', /* |-------------------------------------------------------------------------- | Menu Items |-------------------------------------------------------------------------- | | Specify your menu items to display in the left sidebar. Each menu item | should have a text and and a URL. You can also specify an icon from | Font Awesome. A string instead of an array represents a header in sidebar | layout. The 'can' is a filter on Laravel's built in Gate functionality. | */ 'menu' => [ '管理者メニュー', [ 'text' => 'クライアント', 'icon' => 'th-list', 'submenu' => [ [ 'text' => 'クライアント一覧', 'url' => 'company?clear=1', 'icon' => 'list', ], [ 'text' => 'CSVアップロード', 'url' => 'company/import', 'icon' => 'upload', ], ] ], [ 'text' => 'スタッフ', 'url' => 'staffu?clear=1', 'icon' => 'th-list', ], [ 'text' => '募集', 'url' => 'job?clear=1', 'icon' => 'th-list', ], [ 'text' => '応募', 'url' => 'apply?clear=1', 'icon' => 'th-list', ], [ 'text' => '現状', 'url' => 'status?clear=1', 'icon' => 'th-list', ], [ 'text' => 'スタッフケア', 'url' => 'staff_care?clear=1', 'icon' => 'th-list', ], [ 'text' => '契約', 'icon' => 'th-list', 'submenu' => [ [ 'text' => '契約一覧', 'url' => 'contract?clear=1', 'icon' => 'list', ], [ 'text' => 'ファイルアップロード', 'url' => 'contract/import', 'icon' => 'upload', ], ] ], [ 'text' => 'Staff2000契約', 'url' => 'staff2000_contract?clear=1', 'icon' => 'th-list', ], [ 'text' => 'Staff2000引当データ', 'icon' => 'th-list', 'submenu' => [ [ 'text' => '引当データ一覧', 'url' => 'staff2000_allocation?clear=1', 'icon' => 'list', ], [ 'text' => 'CSVアップロード', 'url' => 'staff2000_allocation/import', 'icon' => 'upload', ], ] ], [ 'text' => 'Staff2000受注データ', 'icon' => 'th-list', 'submenu' => [ [ 'text' => '受注データ一覧', 'url' => 'staff2000_order?clear=1', 'icon' => 'list', ], [ 'text' => 'CSVアップロード', 'url' => 'staff2000_order/import', 'icon' => 'upload', ], ] ], [ 'text' => 'Staff2000派遣先マスタ', 'icon' => 'th-list', 'submenu' => [ [ 'text' => '派遣先マスタ一覧', 'url' => 'staff2000_company?clear=1', 'icon' => 'list', ], [ 'text' => 'CSVアップロード', 'url' => 'staff2000_company/import', 'icon' => 'upload', ], ] ], [ 'text' => 'Staff2000スタッフマスタ', 'icon' => 'th-list', 'submenu' => [ [ 'text' => 'スタッフマスタ一覧', 'url' => 'staff2000_staffu?clear=1', 'icon' => 'list', ], [ 'text' => 'CSVアップロード', 'url' => 'staff2000_staffu/import', 'icon' => 'upload', ], ] ], [ 'text' => 'メール', 'icon' => 'envelope', 'submenu' => [ [ 'text' => '一斉メール', 'url' => 'listing_mail?clear=1', ], ] ], [ 'text' => 'イベント', 'icon' => 'calendar', 'submenu' => [ [ 'text' => '全体カレンダー', 'url' => 'event/calendar?clear=1', 'icon' => 'users', ], [ 'text' => '個人カレンダー', 'url' => 'personal_event/calendar?clear=1', 'icon' => 'user', 'icon' => 'user', ], ], ], 'アカウント', [ 'text' => 'ユーザー一覧', 'url' => 'user?clear=1', 'icon' => 'user', 'can' => 'user_admin', ], [ 'text' => 'マイアカウント', 'icon' => 'info-circle', 'url' => 'user/mypage?clear=1', ], ], /* |-------------------------------------------------------------------------- | Menu Filters |-------------------------------------------------------------------------- | | Choose what filters you want to include for rendering the menu. | You can add your own filters to this array after you've created them. | You can comment out the GateFilter if you don't want to use Laravel's | built in Gate functionality | */ 'filters' => [ JeroenNoten\LaravelAdminLte\Menu\Filters\HrefFilter::class, JeroenNoten\LaravelAdminLte\Menu\Filters\ActiveFilter::class, JeroenNoten\LaravelAdminLte\Menu\Filters\SubmenuFilter::class, JeroenNoten\LaravelAdminLte\Menu\Filters\ClassesFilter::class, JeroenNoten\LaravelAdminLte\Menu\Filters\GateFilter::class, ], /* |-------------------------------------------------------------------------- | Plugins Initialization |-------------------------------------------------------------------------- | | Choose which JavaScript plugins should be included. At this moment, | only DataTables is supported as a plugin. Set the value to true | to include the JavaScript file from a CDN via a script tag. | */ 'plugins' => [ 'datatables' => true, 'select2' => true, 'chartjs' => true, ], ];