小编Lil*_*ian的帖子

我无法使用 Composer 安装 Laravel(缺少 ext-zip 扩展名)

我尝试在 Debian 9 终端上安装 Laravel with Composer

composer global require laravel/installer
Run Code Online (Sandbox Code Playgroud)

但我收到以下错误:

Using version ^3.0 for laravel/installer
./composer.json has been created
Loading composer repositories with package information
Updating dependencies (including require-dev)
Your requirements could not be resolved to an installable set of packages.

  Problem 1
    - laravel/installer v3.0.1 requires ext-zip * -> the requested PHP extension zip is missing from your system.
    - laravel/installer v3.0.0 requires ext-zip * -> the requested PHP extension zip is missing from your system.
    - …
Run Code Online (Sandbox Code Playgroud)

php debian laravel laravel-6

5
推荐指数
1
解决办法
1万
查看次数

AdminLTE 表打破屏幕

我正在使用 AdminLTE 制作一个系统,我在其中放置了一个带有表格的页面,但屏幕损坏了,因为表格在水平方向上太大,我尝试了一切方法来更改 paga 布局以配合表格,但没有任何效果。

\n\n

这是我损坏的页面:

\n\n

桌子

\n\n

这是我的代码(index.blade.css):

\n\n
@extends(\'adminlte::page\')\n\n@section(\'title\', \'Clientes\')\n\n@section(\'content_header\')\n    <h1>Clientes</h1>\n    <link href="{{ asset(\'css/clients.css\') }}" rel="stylesheet">\n@endsection\n\n@section(\'adminlte_css\')\n    <link rel="stylesheet" type="text/css" href="//cdn.datatables.net/1.10.12/css/dataTables.bootstrap.min.css">\n@stop\n\n@section(\'content\')\n\n\n<section class="content">\n      <div id="tamanho" class="row">\n        <div id="tamanho" class="col-12">\n\n          <div id="tamanho" class="card">\n            <div id="tamanho" class="card-header">\n              <h3 class="card-title">Tabela de Clientes</h3>\n            </div>\n            <!-- /.card-header -->\n            <div id="tamanho" class="card-body">\n              <table id="example1 tabelinha" class="table table-bordered table-striped" >\n                <thead>\n                <tr>\n                    <th>ID</th>\n                    <th>Nome</th>\n                    <th>Tipo de Pessoa</th>\n                    <th>Pa\xc3\xads</th>\n                    <th>CEP</th>\n                    <th>Endere\xc3\xa7o</th>\n                    <th>Bairro</th>\n                    <th>Cidade</th>\n                    <th>UF</th>\n                    <th>Telefone</th>\n                    <th>Celular</th>\n                    <th>E-mail</th>\n                    <th>Empresa</th>\n                    <th>CPF_CNPJ</th>\n                    <th>Tipo de Cliente</th>\n                    <th>Onde nos encontrou</th>\n                </tr>\n                </thead>\n …
Run Code Online (Sandbox Code Playgroud)

laravel adminlte laravel-6

2
推荐指数
1
解决办法
3185
查看次数

标签 统计

laravel ×2

laravel-6 ×2

adminlte ×1

debian ×1

php ×1